/* Variables para la paleta de colores */
:root {
  --primary-color: #5b43d6;     /* Violeta principal */
  --primary-dark: #4630b8;      /* Violeta oscuro */
  --primary-light: #8a74f8;     /* Violeta claro */
  --accent-color: #ff5e3a;      /* Naranja vibrante */
  --accent-dark: #e44725;       /* Naranja oscuro */
  --accent-light: #ff7e5f;      /* Naranja claro */
  --dark-color: #222832;        /* Gris azulado oscuro */
  --light-color: #f0f5ff;       /* Blanco azulado */
  --gray-color: #6c757d;        /* Gris medio */
  --white: #ffffff;             /* Blanco puro */
}

/* Estilos generales */
body {
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-color);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

.lead {
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.6;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-accent {
  background-color: var(--accent-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

/* Navegación */
.Exploration_Wisdom_Navigation_Hub {
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
  position: relative;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  transform: translateX(-50%);
}

/* Botones */
.btn {
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover, 
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-accent {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.btn-accent:hover, 
.btn-accent:focus {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover, 
.btn-outline-primary:focus {
  background-color: var(--primary-color);
  color: white;
}

.btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.375rem 1rem;
  font-size: 0.85rem;
}

.rounded-pill {
  border-radius: 50rem !important;
}

/* Badges */
.badge {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Hero Section */
.Strategic_Vision_Hero_Section {
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
}

.Experience_Badge_Trust_Element {
  bottom: 20px;
  right: 20px;
}

/* Iconos en círculos */
.Method_Icon_Circle_Element,
.Values_Icon_Circle_Shape,
.Contact_Icon_Circle_Shape,
.Metrics_Icon_Round_Vision {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(91, 67, 214, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.Feature_Icon_Circle_Shape {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Metodología */
.Method_Step_Number_Badge {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

/* Cards */
.card {
  border: none;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Wisdom_Challenge_Card_Frame:hover,
.Wisdom_Course_Card_Element:hover,
.Experience_Testimony_Card_Frame:hover,
.Team_Member_Card_Element:hover,
.Vision_FAQ_Card_Element:hover,
.Blog_Post_Card_Element:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.rounded-4 {
  border-radius: 1rem !important;
}

/* Testimonios */
.Quote_Icon_Frame_Element i {
  opacity: 0.1;
  color: var(--primary-color);
}

.Story_Avatar_Element {
  background-color: rgba(91, 67, 214, 0.1);
}

/* Forms */
.form-control, 
.form-select {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #dce1e9;
}

.form-control:focus, 
.form-select:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.25rem rgba(91, 67, 214, 0.25);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Cookie Consent */
.Spirit_Cookie_Policy_Frame {
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Footer */
.Footer_Spirit_Vision_Section {
  background-color: var(--dark-color);
}

.Footer_Nav_List_Element a,
.Footer_Contact_List_Group span {
  transition: color 0.3s ease;
}

.Footer_Nav_List_Element a:hover {
  color: white !important;
}

.Footer_Social_Links_Vision a {
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.Footer_Social_Links_Vision a:hover {
  color: white !important;
}

/* Media queries */
@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  h1, .h1 {
    font-size: calc(1.375rem + 1.5vw);
  }
  
  h2, .h2 {
    font-size: calc(1.325rem + 0.9vw);
  }
  
  .display-4 {
    font-size: calc(1.475rem + 2.7vw);
  }
  
  .display-5 {
    font-size: calc(1.425rem + 2.1vw);
  }
}

@media (max-width: 767.98px) {
  .btn {
    padding: 0.5rem 1.25rem;
  }
  
  .Method_Step_Number_Badge {
    width: 35px;
    height: 35px;
  }
  
  .Vision_Team_Avatar_Element {
    width: 120px !important;
    height: 120px !important;
  }
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  animation: fadeIn 0.5s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 30px, 0);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.slideInUp {
  animation: slideInUp 0.5s ease-out;
}

/* Estilos específicos para Contact page */
.Contact_Map_Information_Section iframe {
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.Contact_Social_Links_Frame a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.Question_Card_Box_Element {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Question_Card_Box_Element:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}