/* Variables para la paleta de colores */
:root {
  --primary-color: #4E57CF;     /* Azul profundo */
  --primary-dark: #3A42B0;      /* Azul oscuro */
  --primary-light: #7A81E8;     /* Azul claro */
  --accent-color: #34D399;      /* Verde menta */
  --accent-dark: #10B981;       /* Verde oscuro */
  --accent-light: #6EE7B7;      /* Verde claro */
  --dark-color: #1E293B;        /* Gris azulado oscuro */
  --light-color: #F8FAFC;       /* Blanco hueso */
  --gray-color: #64748B;        /* Gris medio */
  --white: #FFFFFF;             /* Blanco puro */
}

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

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

.lead {
  font-weight: 400;
  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;
}

/* Botones */
.btn {
  border-radius: 0.5rem;
  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: var(--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: var(--white);
}

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

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

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

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

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

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

/* Enlaces */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

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

.navbar {
  padding: 1rem 0;
}

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

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

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

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

/* Barra superior */
.Vibrant_Slate_Wisdom_Bar {
  background-color: var(--dark-color);
  color: var(--white);
  font-size: 0.875rem;
}

/* Iconos en círculos */
.Core_Icon_Circle_Element,
.Benefit_Icon_Circle_Shape,
.Contact_Icon_Shape_Element,
.Problem_Icon_Circle_Display {
  width: 50px;
  height: 50px;
  background-color: rgba(78, 87, 207, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Categorías y etiquetas */
.Category_Icon_Display_Circle {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.Badge_Status_Primary_Value,
.Origin_Badge_Date_Frame,
.Course_Badge_Level_Detail {
  font-weight: 600;
  font-size: 0.875rem;
}

.Popular_Badge_Course_Tag {
  font-weight: 600;
  font-size: 0.75rem;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.Service_Course_Card_Object {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 1rem;
  overflow: hidden;
}

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

/* Steps */
.Method_Step_Number_Badge {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
}

.Value_Icon_Bold_Shape {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Testimonios */
.Testimony_Quote_Element i,
.Result_Quote_Vision_Element i {
  font-size: 3rem;
  opacity: 0.1;
  color: var(--primary-color);
}

.Testimony_Avatar_Element,
.Result_Avatar_Circle_Shape {
  background-color: rgba(78, 87, 207, 0.1);
}

/* Equipo */
.Team_Avatar_Profile_Circle,
.Team_Avatar_Profile_Element {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

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

.Team_Social_Link_Frame a:hover,
.Team_Social_Link_Group a:hover {
  color: var(--primary-color) !important;
}

/* Formulario */
.form-control, 
.form-select {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #E2E8F0;
  font-size: 1rem;
}

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

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

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

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

.Footer_Nav_List_Group a:hover {
  color: var(--white) !important;
}

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

.Footer_Social_Icon_Group a:hover {
  color: var(--white) !important;
}

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

/* Estilos específicos para secciones */
.Success_Story_Vision_Section {
  background-color: var(--light-color);
}

.Success_Icon_Frame_Display {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.Problem_Solution_Mind_Path {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.Feature_Problem_Icon_Area i {
  font-size: 2rem;
}

.Learn_Category_Smart_Group {
  background-color: var(--primary-color);
  position: relative;
}

.Learn_Category_Smart_Group::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="0" cy="0" r="20" fill="%23ffffff" fill-opacity="0.05"/><circle cx="100" cy="100" r="25" fill="%23ffffff" fill-opacity="0.05"/></svg>');
  background-size: cover;
  opacity: 0.15;
}

.Service_Category_Pills_Row .badge {
  font-weight: 600;
  transition: all 0.3s ease;
}

.Service_Category_Pills_Row .badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.Category_Feature_List_Group {
  list-style: none;
  padding-left: 0;
}

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

.Step_Method_Card_Item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Historia/Timeline */
.History_Card_Year_Milestone {
  overflow: hidden;
  border-radius: 1rem;
}

.History_Card_Year_Milestone .h2 {
  font-size: 2.5rem;
}

/* Filosofía/Valores */
.Philosophy_Card_Idea_Element {
  overflow: hidden;
}

.Philosophy_Icon_Frame_Group {
  font-size: 2.5rem;
}

.Philosophy_Core_Content_Block h3 {
  position: relative;
  display: inline-block;
}

.Philosophy_Core_Content_Block h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

/* Métricas y estadísticas */
.Achievement_Card_Stat_Display {
  border-radius: 1rem;
  overflow: hidden;
}

.Achievement_Card_Stat_Display .display-5 {
  font-weight: 700;
  color: var(--primary-color);
}

.Achievement_Icon_Visual_Frame {
  font-size: 2.5rem;
  line-height: 1;
}

/* Sección de recursos/blog */
.Resource_Card_Content_Element {
  border-radius: 1rem;
  overflow: hidden;
}

.Resource_Tag_Category_Badge {
  z-index: 1;
}

.Resource_Link_More_Detail {
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.Resource_Link_More_Detail:hover {
  color: var(--accent-color);
  margin-left: 5px;
}

/* Media queries */
@media (max-width: 991.98px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  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);
  }
  
  .display-6 {
    font-size: calc(1.375rem + 1.5vw);
  }
  
  .History_Card_Year_Milestone .h2 {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .btn {
    padding: 0.5rem 1.25rem;
  }
  
  .Team_Avatar_Profile_Circle,
  .Team_Avatar_Profile_Element {
    width: 100px;
    height: 100px;
  }
  
  .Method_Step_Number_Badge {
    width: 35px;
    height: 35px;
  }
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

/* Efectos de hover */
.Course_Card_Feature_Origin:hover {
  border-color: var(--primary-color);
}

.Testimony_Card_Person_Element:hover {
  border-left: 3px solid var(--primary-color);
}

.Resource_Card_Content_Element:hover .h5 {
  color: var(--primary-color);
}

/* Sombras y efectos visuales */
.shadow-hover:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

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

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

/* Estilo para el badge redondo en la esquina */
.Method_Step_Number_Badge {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  color: var(--white);
  font-weight: 700;
}

/* Cursores y asesorías */
.cursor-pointer {
  cursor: pointer;
}

/* Hover en cards de FAQs */
.Faq_Card_Question_Element:hover {
  border-left: 3px solid var(--primary-color);
}

/* Espaciado para secciones */
section {
  overflow: hidden;
}

/* Colores y efectos adicionales */
.bg-gradient-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.bg-gradient-accent {
  background: linear-gradient(45deg, var(--accent-color), var(--accent-light));
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}