    body {
        background-color: #f4f7fc;
    }

.hero {
  background-color: #094c69;
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero .hero-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #0327557d;
  z-index: 1;
}

.hero > .container {
  position: relative;
  z-index: 2;
  max-width: 1140px;
}

.hero .btn-warning {
  background-color: #ffc107;
  border-color: #ffc107;
}

#discount-countdown {
  background-color: #ffc107;
  color: #094c69;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.2rem !important;
  font-weight: 700;
  display: inline-block;
}

.hero-features {
  background-color: #094c69;
  color: #fff;
  position: relative;
  z-index: 2;
  display: flex;
  text-align: center;
}

.hero-features .feature {
  flex: 1;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.hero-features .feature:last-child {
  border-right: none;
}

.hero-features .feature i {
  font-size: 1.75rem;
  margin-right: 0.75rem;
}

.hero-features .small {
  font-size: 0.85rem;
  opacity: 0.8;
}


.card-whatsapp {
  background-color: rgba(46, 118, 149, 0.77);
  color: #fff;
}

.card-whatsapp h5 {
  color: #fff;
}

.btn-modulo{
  color: rgb(18 55 111) !important;
}

.aval-card {
  background: #fff;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.aval-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.aval-card img {
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.aval-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #042D62;
}

.aval-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Animaciones de entrada */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Aplicación de animaciones */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out both;
}

.animate-fade-in-left {
  animation: fadeInLeft 1s ease-out both;
}

.animate-fade-in-right {
  animation: fadeInRight 1s ease-out both;
}


@media (max-width: 768px) {
  .hero {
    height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-features {
    flex-direction: column;
  }

  .hero-features .feature {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
  }

  .hero-features .feature:last-child {
    border-bottom: none;
  }
}

  #discount-countdown {
    background-color: #ffc107;
    color: #042D62;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    display: inline-block;
  }

  @media (max-width: 768px) {
    .hero {
      height: auto;
      padding-top: 3rem;
      padding-bottom: 3rem;
    }
  }


.instructor-photo {
  max-width: 300px;
  border-radius: 50% / 45%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}



#discount-countdown {
  background-color: #ffc107;
  color: #042D62;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  display: inline-block;
}


/* Animación base para todos los botones */
.btn {
  transition: all 0.3s ease-in-out;
}

/* Botones amarillos (btn-warning) */
.btn-warning {
  background-color: #ffc107;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-warning:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

/* Botones azules (por si usas .btn-primary en el futuro) */
.btn-primary {
  background-color: #042D62;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  background-color: #063a52;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

/* Botón en tarjetas u otros contextos */
.btn:hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}




  #contenido-programa {
    background-color: #f8f9fa;
  }

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

  .modulo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .modulo-card h4 {
    color: #042D62;
  }

  .modulo-card ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
  }

.toggle-icon {
  transition: transform 0.3s ease;
}

/* Rotar cuando está activo */
button[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
}



  @media (max-width: 768px) {
    .modulo-card h4 {
      font-size: 1.2rem;
    }

    .modulo-card ul li {
      font-size: 0.95rem;
    }
  }


  
.section h2 {
  color: #042D62;
}

.card i {
  font-size: 2.5rem;
}

.card-title {
  color: #042D62;
}

.lead {
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .bi-arrow-right-circle-fill {
    display: none !important;
  }
}



/* === OBJETIVO DEL PROGRAMA === */
.objetivo-programa h2 {
  color: #042D62;
}

.objetivo-programa .objetivo-card {
  border-radius: 0.75rem;
}

.objetivo-programa .objetivo-titulo {
  color: #042D62;
}

.objetivo-programa .objetivo-text {
  font-size: 1.1rem;
  color: #333;
}




/* === BENEFICIOS PARA LOS PARTICIPANTES === */
.beneficios-participantes h2 {
  color: #042D62;
}

.beneficios-participantes .beneficio-card {
  border-radius: 0.75rem;
}

.beneficios-participantes .beneficio-icon {
  font-size: 2.5rem;
  color: #042D62;
}

.beneficios-participantes .beneficio-titulo {
  color: #042D62;
}


/* === BENEFICIOS PARA LAS ORGANIZACIONES === */
.beneficios-organizaciones h2 {
  color: #042D62;
}

.beneficios-organizaciones .org-card {
  border-radius: 0.75rem;
}

.beneficios-organizaciones .org-icon {
  font-size: 2.5rem;
  color: #042D62;
}

.beneficios-organizaciones .org-titulo {
  color: #042D62;
}


/* === ¿POR QUÉ FORMARTE Y CERTIFICARTE CON NOSOTROS? === */
.certificacion-razones h2 {
  color: #042D62;
}

.certificacion-razones .razones-card {
  border-radius: 0.75rem;
}

.certificacion-razones .razones-icon {
  font-size: 2.5rem;
  color: #042D62;
}

.certificacion-razones .razones-titulo {
  color: #042D62;
}


.h2-inversion{
color: white !important;
}


/* === FORMAS DE PAGO === */
.formas-pago h2 {
  color: #042D62;
}

.formas-pago .pago-card {
  border-radius: 0.75rem;
}

.formas-pago .pago-icon {
  font-size: 2.5rem;
  color: #042D62;
}

.formas-pago .pago-titulo {
  color: #042D62;
}

.formas-pago .bg-warning-subtle {
  background-color: rgba(255, 193, 7, 0.1);
}

/* Cambia el color de todos los íconos excepto el de descuento */
.formas-pago .pago-card i {
  color: #042D62 !important;
}

/* EXCEPCIÓN: deja el icono del descuento como está */
.formas-pago .bg-warning-subtle i {
  color: #ffc107 !important;
}


/* === CONOCE A TU INSTRUCTOR === */
.instructor-section h2 {
  color: #042D62;
}

.instructor-section .instructor-photo {
  max-width: 300px;
  border-radius: 0.75rem;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.instructor-section .accordion-button {
  background-color: #f8f9fa;
  color: #042D62;
  font-weight: 600;
}

.instructor-section .accordion-button:not(.collapsed) {
  background-color: #e6f1f7;
  color: #042D62;
}

.instructor-section .accordion-body ul {
  padding-left: 1.2rem;
}

.instructor-section .accordion-body li {
  margin-bottom: 0.5rem;
}

.carousel-inner img {
  max-height: 400px;
  object-fit: contain;
  background-color: #fff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #042D62; /* Color de fondo visible */
  border-radius: 50%;
  padding: 1rem;
  background-size: 50% 50%;
  opacity: 0.9;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #0143a4; /* Color al hacer hover */
  opacity: 1;
}


/* === PERFIL DEL EGRESADO === */
.perfil-egresado h2 {
  color: #042D62 !important;
}

.perfil-egresado .perfil-egresado-text {
  font-size: 1.1rem;
  color: #333;
}

.perfil-egresado h4 {
  color: #042D62!important;
}

.perfil-egresado ul li span {
  color: #333;
  font-size: 1rem;
}
.perfil-egresado ul li i {
  color: #042D62 !important; 
}



/* === ESTILO GENERAL DE LA SECCIÓN EMPRESAS === */

.empresa-section h2,
.empresa-section h3,
.empresa-section h5,
.empresa-impacto h3,
.empresa-impacto h5,
.empresa-section .fw-bold,
.empresa-section .fw-semibold,
.empresa-section .text-primary,
.empresa-impacto .text-primary {
  color: #042D62 !important;
}

/* Texto secundario */
.empresa-section p,
.empresa-impacto p {
  color: #444;
}

/* Botones */
.empresa-section .btn {
  font-weight: 500;
  font-size: 1rem;
  border-radius: 0.5rem;
}

.empresa-section .btn-success {
  background-color: #198754;
  border-color: #198754;
}

.empresa-section .btn-outline-primary {
  color: #042D62;
  border-color: #042D62;
}

.empresa-section .btn-outline-primary:hover {
  background-color: #042D62;
  color: white;
}

/* Etiquetas y badges */
.empresa-section .badge {
  font-size: 1rem;
  border-radius: 1rem;
}

/* Tarjetas */
.empresa-section .border,
.empresa-impacto .border {
  border-color: #e2e8f0;
}

.empresa-section .shadow-sm,
.empresa-impacto .shadow-sm {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.empresa-section .shadow-sm:hover,
.empresa-impacto .shadow-sm:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}


.badge-lg {
  padding: 0.8rem 1.5rem; /* Aumenta el padding para que sea más grande */
  font-size: 1.25rem; /* Aumenta el tamaño del texto */
  font-weight: bold; /* Asegura que el texto sea negrita */
}

.hero .badge-lg i {
  font-size: 1.5rem; /* Hace el ícono más grande */
}