/* Variables de colores optimizadas para UX */

* {
  font-family: "Comfortaa", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
    Cantarell, "Helvetica Neue", sans-serif !important;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

:root {
  --coacsa-navbar-height: 80px;
}

@media (max-width: 991px) {
  :root {
    --coacsa-navbar-height: 64px;
  }
}

body {
  padding-top: 0 !important;
}

main,
.content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.navbar,
nav.navbar,
.navbar.navbar-expand-lg,
.navbar.navbar-dark {
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1100 !important;
  overflow: visible !important;
  min-height: var(--coacsa-navbar-height) !important;
}

.navbar-brand img {
  max-height: 72px !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain;
}

@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 60px !important;
  }
}

/* Banner creditos sin bordes redondeados */
.banner-wrapper,
.banner-wrapper img,
img[src*="banner1.png"] {
  border-radius: 0 !important;
  overflow: visible !important;
  display: block;
}

:root {
  /* Colores principales */
  --azul-principal: #292559;
  --azul-hover: #3d3875;
  --azul-activo: #1f1a42;
  --azul-transparente: rgba(41, 37, 89, 0.9);
  --azul-suave: rgba(41, 37, 89, 0.08);

  /* Amarillo con mejor contraste */
  --amarillo-principal: #f6e926;
  --amarillo-hover: #ffed4e;
  --amarillo-activo: #d9cf1e;
  --amarillo-suave: rgba(246, 233, 38, 0.15);
  --negro: #0a0a0a;


  /* Neutros */
  --blanco: #ffffff;
  --gris-claro: #f8f9fa;
  --gris-medio: #6c757d;
  --gris-oscuro: #343a40;

  /* Estados de feedback */
  --exito: #28a745;
  --advertencia: #ffc107;
  --error: #dc3545;
  --info: #17a2b8;

  /* Sombras para profundidad */
  --sombra-ligera: 0 2px 8px rgba(0, 0, 0, 0.08);
  --sombra-media: 0 4px 12px rgba(0, 0, 0, 0.12);
  --sombra-fuerte: 0 8px 24px rgba(0, 0, 0, 0.16);
}


/* Navbar con bordes redondeados y mejor feedback visual */
.navbar {
  background: var(--azul-transparente) !important;
  backdrop-filter: blur(15px) saturate(180%);
  box-shadow: var(--sombra-ligera);
  border-bottom: 3px solid var(--amarillo-suave);
  border-radius: 0 0 20px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(246, 233, 38, 0.1), transparent);
  transition: left 0.6s ease;
}

.navbar:hover::before {
  left: 100%;
}

.navbar:hover {
  box-shadow: var(--sombra-fuerte);
  border-bottom-color: var(--amarillo-principal);
}

/* ========================================
   EDITAR: LOGO DEL NAVBAR (HEADER)
   ======================================== */
/* Aquí puedes cambiar:
   - font-family: Tipo de letra del logo
   - font-size: Tamaño de la letra del logo (actual: 24px)
   - font-weight: Grosor de la letra (bold = negrita)
   - color: Color del logo (se usa variable --amarillo-principal)
*/
.navbar-brand {
  font-family: 'Arial', sans-serif;
  /* CAMBIAR: Tipo de letra del logo */
  font-size: 24px;
  /* CAMBIAR: Tamaño del logo */
  font-weight: bold;
  /* CAMBIAR: Grosor (bold, normal, 700, etc.) */
  color: var(--amarillo-principal) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
  position: relative;
}

.navbar-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(246, 233, 38, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover::before {
  opacity: 1;
}

.navbar-brand:hover {
  color: var(--blanco) !important;
  text-shadow: 0 0 20px rgba(26, 90, 209, 0.6);
  transform: scale(1.08) translateY(-2px);
}

.navbar-brand:active {
  transform: scale(1.02);
}

/* ========================================
   EDITAR: ENLACES DEL MENÚ (HEADER)
   ======================================== */
/* Aquí puedes cambiar:
   - font-family: Tipo de letra de los enlaces (Inicio, Nosotros, etc.)
   - font-size: Tamaño de letra de los enlaces (actual: 16px)
   - font-weight: Grosor de la letra (500 = medio-negrita)
   - color: Color de los enlaces (se usa variable --blanco)
   - margin: Separación entre enlaces
   - padding: Espaciado interno de cada enlace
*/
.navbar-nav .nav-link {
  font-family: 'Arial', sans-serif;
  /* CAMBIAR: Tipo de letra del menú */
  font-size: 50px;
  /* CAMBIAR: Tamaño de letra del menú */
  font-weight: 700;
  /* CAMBIAR: Grosor de letra */
  color: var(--blanco) !important;
  line-height: 1.25;
  margin: 0 10px;
  padding: 0.9rem 1.5rem !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 10px;
  overflow: visible;
}

/* Efecto de brillo en hover */
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(246, 233, 38, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
  width: 200%;
  height: 200%;
}

/* Línea inferior animada */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amarillo-principal), var(--amarillo-hover));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(246, 233, 38, 0.5);
}

.navbar-nav .nav-link:hover {
  color: var(--amarillo-principal) !important;
  background: rgba(246, 233, 38, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(246, 233, 38, 0.2);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.navbar-nav .nav-link:active {
  transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
  color: var(--amarillo-principal) !important;
  background: linear-gradient(135deg, rgba(246, 233, 38, 0.15), rgba(246, 233, 38, 0.08));
  box-shadow: inset 0 2px 4px rgba(246, 233, 38, 0.2);
}

.navbar-nav .nav-link.active::after {
  width: 80%;
}

/* Focus visible mejorado para accesibilidad */
.navbar-nav .nav-link:focus-visible {
  outline: 3px solid var(--amarillo-principal);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(246, 233, 38, 0.2);
}

/* Hero card sin overflow hidden para permitir dropdown */
.hero-card {
  overflow: visible !important;
}

/* Mantener esquinas redondeadas en el carousel */
.hero-card .carousel,
.hero-card .carousel-inner,
.hero-card .carousel-item,
.hero-card .carousel-item img {
  border-radius: 1.5rem;
}

/* Dropdown con HOVER - se despliega al pasar el cursor */
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.navbar-nav .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  display: block;
}

/* Asegurar que el dropdown se muestre cuando tiene la clase 'show' de Bootstrap */
.navbar-nav .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;

}

/* Espaciado para que el contenido no quede bajo el navbar */
body {
  padding-top: 0;
}

/* ========================================
   EDITAR: ESTILOS DEL FOOTER (PIE DE PÁGINA)
   ======================================== */
/* Aquí se configuran todos los estilos del footer */

.footer {
  background: rgba(41, 37, 89, 0.9) !important;
  backdrop-filter: blur(10px);
  color: #ffffff;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(246, 233, 38, 0.4), transparent);
}

/* ========================================
   EDITAR: TÍTULOS DEL FOOTER
   ======================================== */
/* Controla los títulos: "Enlaces Rápidos", "Contacto", etc. */
.footer h5 {
  font-weight: bold;
  /* CAMBIAR: Grosor del título (bold, normal, 700) */
  color: rgba(253, 253, 247, 0.95);
  /* CAMBIAR: Color del título */
  border-bottom: 2px solid rgba(246, 233, 38, 0.2);
  padding-bottom: 10px;
  /* AGREGAR: font-family: 'Arial', sans-serif; para cambiar tipo de letra */
  /* AGREGAR: font-size: 18px; para cambiar tamaño */
}

/* ========================================
   EDITAR: TEXTO DESCRIPTIVO DEL FOOTER
   ======================================== */
/* Controla el texto: "Crecemos junto a nuestros socios..." */
.footer-description {
  font-size: 18px;
  /* CAMBIAR: Tamaño del texto descriptivo */
  line-height: 1.6;
  /* CAMBIAR: Espacio entre líneas (1.6 = 60% más alto) */
  color: rgba(233, 227, 227, 0.836);
  /* CAMBIAR: Color del texto */
  font-weight: 500;
  /* CAMBIAR: Grosor de la letra */
  /* AGREGAR: font-family: 'Arial', sans-serif; para cambiar tipo de letra */
}

/* ========================================
   EDITAR: ENLACES DEL FOOTER
   ======================================== */
/* Controla los enlaces: Inicio, Nosotros, Productos, etc. y Redes Sociales */
.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.social-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  /* CAMBIAR: Color de los enlaces */
  transition: all 0.3s ease;
  display: inline-block;
  /* AGREGAR: font-size: 15px; para cambiar tamaño de letra */
  /* AGREGAR: font-family: 'Arial', sans-serif; para cambiar tipo de letra */
  /* AGREGAR: font-weight: 500; para cambiar grosor de letra */
}

.footer-links a:hover,
.social-links a:hover {
  color: #f6e926 !important;
  padding-left: 5px;
  text-shadow: 0 0 10px rgba(246, 233, 38, 0.3);
}

/* ========================================
   EDITAR: INFORMACIÓN DE CONTACTO (FOOTER)
   ======================================== */
/* Controla: dirección, teléfono, email, horario */
.footer-contact li {
  font-size: 14px;
  /* CAMBIAR: Tamaño de la información de contacto */
  color: rgba(255, 255, 255, 0.9);
  /* CAMBIAR: Color del texto */
  /* AGREGAR: font-family: 'Arial', sans-serif; para cambiar tipo de letra */
  /* AGREGAR: font-weight: 400; para cambiar grosor de letra */
}

.footer-contact i {
  color: #f6e926;
  margin-right: 10px;
  filter: drop-shadow(0 0 5px rgba(246, 233, 38, 0.3));
}

/* ========================================
   EDITAR: COPYRIGHT (FOOTER)
   ======================================== */
/* Controla el texto: "© 2026 Cooperativa..." */
.footer hr {
  opacity: 0.2;
  background: linear-gradient(90deg, transparent, rgba(246, 233, 38, 0.5), transparent);
}

.footer .text-center {
  font-size: 14px;
  /* CAMBIAR: Tamaño del texto de copyright */
  color: rgba(255, 255, 255, 0.7);
  /* CAMBIAR: Color del copyright */
  /* AGREGAR: font-family: 'Arial', sans-serif; para cambiar tipo de letra */
  /* AGREGAR: font-weight: 400; para cambiar grosor */
}

/* ========================================
   PERSONALIZAR FOOTER - EDITA AQUÍ
   ======================================== */

/*
COLORES CORPORATIVOS APLICADOS:
- Azul: #292559 (Navbar, Footer, Fondos)
- Amarillo: #f6e926 (Marca, Enlaces hover, Acentos)
- Blanco: #ffffff (Textos)
*/

/* ========================================
   EDITAR: BOTONES PRINCIPALES
   ======================================== */
/* Controla todos los botones primarios del sitio */
/* Ejemplos: botones de "Solicitar", "Inscribirme", etc. */
.btn-primary {
  background: linear-gradient(135deg, var(--azul-principal) 0%, var(--azul-hover) 100%) !important;
  border: 2px solid var(--azul-principal) !important;
  color: var(--amarillo-principal) !important;
  /* CAMBIAR: Color del texto del botón */
  font-weight: 600;
  /* CAMBIAR: Grosor de letra (600 = semi-negrita) */
  padding: 0.85rem 2rem;
  /* CAMBIAR: Tamaño del botón (vertical horizontal) */
  border-radius: 12px;
  /* CAMBIAR: Redondez de esquinas */
  /* AGREGAR: font-size: 16px; para cambiar tamaño de letra */
  /* AGREGAR: font-family: 'Arial', sans-serif; para cambiar tipo de letra */
  box-shadow: 0 4px 15px rgba(41, 37, 89, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Efecto ripple al hacer clic */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(246, 233, 38, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-primary:active::before {
  width: 400px;
  height: 400px;
}

/* Fondo animado en hover */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--amarillo-principal) 0%, var(--amarillo-hover) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 10px;
}

.btn-primary:hover {
  color: var(--azul-principal) !important;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px rgba(246, 233, 38, 0.4);
  border-color: var(--amarillo-principal) !important;
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 0 6px 20px rgba(246, 233, 38, 0.3);
}

/* Efecto de pulso en focus */
.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(246, 233, 38, 0.3), 0 12px 30px rgba(246, 233, 38, 0.4);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(246, 233, 38, 0.3), 0 12px 30px rgba(246, 233, 38, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(246, 233, 38, 0.2), 0 12px 30px rgba(246, 233, 38, 0.5);
  }
}

/* Botón celeste personalizado */
.btn-celeste {
  background: linear-gradient(135deg, #4fc3f7 0%, #27b8fc 100%) !important;
  border: 2px solid #1a9fe3 !important;
  color: #fff !important;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(39, 158, 255, 0.35);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-celeste:hover {
  background: linear-gradient(135deg, #6fcfff 0%, #39c8ff 100%) !important;
  border-color: #2da8e2 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(39, 158, 255, 0.5);
}

.btn-celeste:active {
  transform: translateY(0) scale(0.98);
}

.btn-celeste:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(55, 166, 255, 0.35);
}

/* Botones outline con transformaciones */
.btn-outline-primary {
  border: 2px solid var(--azul-principal) !important;
  color: var(--azul-principal) !important;
  background: transparent;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-outline-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--azul-principal), var(--azul-hover));
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-outline-primary:hover {
  color: var(--amarillo-principal) !important;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(41, 37, 89, 0.3);
  border-color: var(--azul-hover) !important;
}

.btn-outline-primary:hover::before {
  transform: translateY(0);
}

.btn-outline-primary:active {
  transform: translateY(-2px) scale(0.98);
}

/* Enlaces con mejor contraste */
a {
  color: var(--azul-principal);
  transition: all 0.3s ease;
  text-decoration: none;
}

a:hover {
  color: var(--azul-hover);
  text-decoration: underline;
  text-decoration-color: var(--amarillo-principal);
  text-decoration-thickness: 2px;
}

/* Badges y etiquetas con mejor visibilidad */
.badge.bg-primary {
  background: var(--azul-principal) !important;
  color: var(--amarillo-principal) !important;
  padding: 0.5em 1em;
  box-shadow: var(--sombra-ligera);
  font-weight: 600;
  border-radius: 6px;
}

.text-primary {
  color: var(--azul-principal) !important;
}

.bg-primary {
  background: linear-gradient(135deg, #b3ecff 0%, #81d9ff 100%) !important; /* celeste suave */
  color: #0a2b4c !important; /* texto azul oscuro */
}

/* Override específico para tarjetas del panel de inscripciones */
.card.bg-primary,
.card.bg-success,
.card.bg-warning,
.card.bg-danger {
  color: #0a2b4c !important;
}

.card.bg-primary h3,
.card.bg-success h3,
.card.bg-warning h3,
.card.bg-danger h3 {
  color: #0a2b4c !important;
  text-shadow: none !important;
}

.card.bg-primary {
  background: linear-gradient(135deg, #cff5ff 0%, #b6ecff 100%) !important;
}

.card.bg-success {
  background: linear-gradient(135deg, #d9f9e4 0%, #b9f0ca 100%) !important;
}

.card.bg-warning {
  background: linear-gradient(135deg, #fff8cf 0%, #fff0a8 100%) !important;
}

.card.bg-danger {
  background: linear-gradient(135deg, #ffd8da 0%, #ffb7c0 100%) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #8ce2ff 0%, #4ec9fb 100%) !important;
  border-color: #3ea8d9 !important;
  color: #033c65 !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #aaf0ff 0%, #5dcffc 100%) !important;
  color: #033c65 !important;
}


/* Si quieres un estilo general celeste para el botón Inscribirme */
.btn-celeste {
  background: linear-gradient(135deg, #6fd4ff 0%, #35b5ef 100%) !important;
  border: 2px solid #2fa9dc !important;
  color: #fff !important;
}

.btn-celeste:hover {
  background: linear-gradient(135deg, #7fdfff 0%, #4abff4 100%) !important;
}



/* ========================================
   EDITAR: TARJETAS (CARDS)
   ======================================== */
/* Controla las tarjetas de productos, servicios, noticias, cursos, etc. */
.card {
  border: 1px solid var(--gris-claro);
  /* CAMBIAR: Borde de la tarjeta */
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--blanco);
  /* CAMBIAR: Color de fondo */
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  /* CAMBIAR: Sombra de la tarjeta */
  border-radius: 16px;
  /* CAMBIAR: Redondez de esquinas */
  position: relative;
}

/* Borde superior animado con gradiente */
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--azul-principal), var(--amarillo-principal), var(--azul-principal));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Sombra de profundidad en hover */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(41, 37, 89, 0.2);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card:hover {
  border-color: rgba(246, 233, 38, 0.3);
  transform: translateY(-12px) scale(1.02);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  opacity: 1;
}

/* Efecto de brillo en la card */
.card-body {
  position: relative;
  z-index: 1;

}

.card:hover .card-body {
  transform: translateZ(0);
}

/* ========================================
   EDITAR: TÍTULOS DE TARJETAS
   ======================================== */
/* Controla los títulos dentro de las tarjetas */
.card-title {
  color: var(--azul-principal);
  /* CAMBIAR: Color del título */
  font-weight: 700;
  /* CAMBIAR: Grosor (700 = negrita) */
  margin-bottom: 1rem;
  transition: color 0.3s ease;
  /* AGREGAR: font-size: 1.5rem; para cambiar tamaño */
  /* AGREGAR: font-family: 'Arial', sans-serif; para cambiar tipo de letra */
}

.card:hover .card-title {
  color: var(--azul-hover);
}

/* ========================================
   EDITAR: TEXTO DE TARJETAS
   ======================================== */
/* Controla el texto descriptivo dentro de las tarjetas */
.card-text {
  color: var(--gris-oscuro);
  /* CAMBIAR: Color del texto */
  line-height: 1.6;
  /* CAMBIAR: Espacio entre líneas */
  transition: color 0.3s ease;
  /* AGREGAR: font-size: 1rem; para cambiar tamaño */
  /* AGREGAR: font-family: 'Arial', sans-serif; para cambiar tipo de letra */
  /* AGREGAR: font-weight: 400; para cambiar grosor */
}

.card:hover .card-text {
  color: var(--gris-medio);
}

/* Animación de entrada para cards */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: cardFadeIn 0.6s ease-out;
}

/* Footer de la card con transición */
.card-footer {
  transition: all 0.3s ease;
  background: rgba(41, 37, 89, 0.02);
}

.card:hover .card-footer {
  background: rgba(246, 233, 38, 0.05);
}

/* Imágenes dentro de cards con zoom */
.card-img-top {
  transition: transform 0.5s ease;
}

.card:hover .card-img-top {
  transform: scale(1.08);
}

/* ========================================
   EDITAR: TÍTULOS PRINCIPALES DEL CONTENIDO
   ======================================== */
/* Controla todos los títulos h1, h2, h3 de las páginas */
/* Ejemplos: "Productos", "Servicios", "Educación Financiera", etc. */
h1,
h2,
h3 {
  color: var(--azul-principal);
  /* CAMBIAR: Color de los títulos */
  position: relative;
  font-weight: 700;
  /* CAMBIAR: Grosor (700 = negrita) */
  line-height: 1.3;
  /* CAMBIAR: Espacio entre líneas */
  /* AGREGAR: font-family: 'Arial', sans-serif; para cambiar tipo de letra */
}

/* ========================================
   EDITAR: TÍTULOS GRANDES (DISPLAY)
   ======================================== */
/* Controla los títulos grandes de las páginas */
.display-4 {
  color: var(--azul-principal);
  /* CAMBIAR: Color del título */
  font-weight: 700;
  /* CAMBIAR: Grosor de letra */
  letter-spacing: -0.5px;
  /* CAMBIAR: Espaciado entre letras */
  /* AGREGAR: font-size: 3rem; para cambiar tamaño */
  /* AGREGAR: font-family: 'Arial', sans-serif; para cambiar tipo de letra */
}

/* ========================================
   ESTADOS INTERACTIVOS Y FEEDBACK VISUAL
   ======================================== */

/* Loading spinner */
.spinner-border-primary {
  border-color: var(--amarillo-principal);
  border-right-color: transparent;
}

/* Tooltips personalizados */
.tooltip-custom {
  position: relative;
  cursor: help;
}

.tooltip-custom::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: var(--azul-principal);
  color: var(--amarillo-principal);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 14px;
  box-shadow: var(--sombra-media);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.tooltip-custom:hover::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* Alertas mejoradas */
.alert {
  border-radius: 12px;
  border: none;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--sombra-ligera);
}

.alert-info {
  background: linear-gradient(135deg, rgba(41, 37, 89, 0.05) 0%, rgba(41, 37, 89, 0.08) 100%);
  border-left: 4px solid var(--azul-principal);
  color: var(--azul-principal);
}

.alert-success {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.15) 100%);
  border-left: 4px solid var(--exito);
  color: var(--exito);
}

.alert-warning {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.15) 100%);
  border-left: 4px solid var(--advertencia);
  color: #856404;
}

.alert-danger {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.15) 100%);
  border-left: 4px solid var(--error);
  color: var(--error);
}

/* Inputs y formularios con mejor UX */
.form-control,
.form-select {
  border: 2px solid var(--gris-claro);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--amarillo-principal);
  box-shadow: 0 0 0 4px rgba(246, 233, 38, 0.1);
  outline: none;
}

.form-control:hover,
.form-select:hover {
  border-color: var(--azul-suave);
}

/* Labels más legibles */
.form-label {
  color: var(--azul-principal);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Estados de validación */
.is-valid {
  border-color: var(--exito) !important;
}

.is-invalid {
  border-color: var(--error) !important;
}

/* Skeleton loading para mejor UX */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Scroll suave para toda la página */
html {
  scroll-behavior: smooth;
}

/* Selección de texto personalizada */
::selection {
  background: var(--amarillo-principal);
  color: var(--azul-principal);
}

::-moz-selection {
  background: var(--amarillo-principal);
  color: var(--azul-principal);
}

/* Iconos con efecto suave */
.bi {
  transition: all 0.3s ease;
}

.card:hover .bi {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(246, 233, 38, 0.3));
}

/* Secciones con fondo suave */
.bg-light-custom {
  background: linear-gradient(180deg, rgba(246, 233, 38, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Líneas divisorias suaves */
hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(41, 37, 89, 0.2), transparent);
}

/* ===========================================
   ESTILOS MÓDULO NOSOTROS
   =========================================== */

/* Hero Section Nosotros */
.hero-nosotros {
  background: linear-gradient(135deg, rgba(41, 37, 89, 0.9) 0%, rgba(41, 37, 89, 0.85) 100%),
    url('../img/banner.png') center/cover no-repeat;
  padding: 80px 0 60px;
  position: relative;
}

.hero-nosotros::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/pattern-dots.png') repeat;
  opacity: 0.05;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41, 37, 89, 0.7) 0%, rgba(41, 37, 89, 0.6) 100%);
}

.min-vh-50 {
  min-height: 50vh;
}

/* Estadísticas */
.stat-card {
  background: white;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px rgba(41, 37, 89, 0.15);
}

.stat-card i {
  transition: all 0.4s ease;
}

.stat-card:hover i {
  transform: scale(1.2) rotateY(360deg);
}

/* Badge Overlay en imagen */
.badge-overlay {
  position: absolute;
  bottom: 30px;
  right: 30px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Cards de Misión y Visión */
.mission-card,
.vision-card {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--azul-principal), var(--azul-hover));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--amarillo-principal), #f4d906);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
  transform: scaleY(1);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(41, 37, 89, 0.2) !important;
}

.icon-box {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(246, 233, 38, 0.1) 0%, rgba(41, 37, 89, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.mission-card:hover .icon-box,
.vision-card:hover .icon-box {
  transform: rotate(360deg) scale(1.1);
}

/* Timeline */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--azul-principal) 0%, var(--amarillo-principal) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(41, 37, 89, 0.1);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-marker {
  transform: translateX(-50%) scale(1.3);
  box-shadow: 0 0 0 8px rgba(246, 233, 38, 0.2);
}

.timeline-content {
  width: 45%;
  animation: fadeInUp 0.6s ease-out;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  padding-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  padding-left: 50px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .timeline-marker {
    left: 20px !important;
    transform: translateX(0) !important;
  }

  .timeline-content {
    width: 100% !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
  }
}

/* Value Cards */
.value-card {
  background: white;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(246, 233, 38, 0.05) 0%, rgba(41, 37, 89, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(246, 233, 38, 0.3);
  box-shadow: 0 20px 60px rgba(41, 37, 89, 0.15);
}

.value-card:hover::before {
  opacity: 1;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(246, 233, 38, 0.1) 0%, rgba(41, 37, 89, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.value-card:hover .icon-wrapper {
  transform: rotateY(360deg);
  background: linear-gradient(135deg, rgba(246, 233, 38, 0.2) 0%, rgba(41, 37, 89, 0.2) 100%);
}

/* Team Cards */
.team-card {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(41, 37, 89, 0.2);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.15);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41, 37, 89, 0.9) 0%, rgba(41, 37, 89, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.social-links .social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  text-decoration: none;
  line-height: 1;
  padding-left: 0;
  transform: translateY(10px);
  opacity: 0;
  will-change: transform, opacity;
}

.social-links .social-link i {
  display: block;
  line-height: 1;
}

.team-card:hover .social-link {
  transform: translateY(0);
  opacity: 1;
}

.social-link:nth-child(1) {
  transition-delay: 0.1s;
}

.social-link:nth-child(2) {
  transition-delay: 0.2s;
}

.social-links .social-link:hover {
  background: var(--amarillo-principal);
  color: var(--azul-principal);
  padding-left: 0;
  text-shadow: none;
  transform: translateY(-5px);
}

.team-info {
  background: white;
  position: relative;
  z-index: 1;
}

/* Certification Cards */
.certification-card {
  background: white;
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 2px solid rgba(246, 233, 38, 0.1);
}

.certification-card:hover {
  transform: translateY(-10px);
  border-color: rgba(246, 233, 38, 0.4);
  box-shadow: 0 15px 40px rgba(41, 37, 89, 0.15);
}

.certification-card i {
  transition: all 0.5s ease;
}

.certification-card:hover i {
  transform: rotateY(360deg) scale(1.15);
}

/* Gradientes de Fondo */
.bg-gradient-primary-soft {
  background: linear-gradient(180deg, rgba(246, 233, 38, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--azul-principal) 0%, var(--azul-hover) 100%);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-nosotros {
    padding: 60px 0 40px;
  }

  .badge-overlay {
    bottom: 15px;
    right: 15px;
    font-size: 0.85rem;
  }

  .team-image {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .stat-card h3 {
    font-size: 1.5rem;
  }

  .team-image {
    height: 200px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.testimonials-modern {
  background:
    radial-gradient(600px 300px at 10% 10%, rgba(246, 233, 38, .15), transparent 60%),
    radial-gradient(600px 300px at 90% 20%, rgba(41, 37, 89, .15), transparent 60%),
    linear-gradient(180deg, #f9fafc 0%, #ffffff 100%);
}

.testimonials-title {
  font-weight: 900;
  letter-spacing: -0.4px;
  color: #292559;
  font-size: clamp(26px, 3vw, 42px);
}

.testimonials-subtitle {
  color: rgba(0, 0, 0, .6);
  font-size: 1.1rem;
}

/* CARD */
.testimonial-modern-card {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(41, 37, 89, .12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}

.testimonial-modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(246, 233, 38, .25), rgba(41, 37, 89, .15));
  opacity: 0;
  transition: opacity .35s ease;
}

.testimonial-modern-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .22);
}

.testimonial-modern-card:hover::before {
  opacity: .25;
}

/* HEADER */
.testimonial-header {
  background: linear-gradient(135deg, #292559, #3d3875);
  padding: 48px 0 0;
  text-align: center;
  position: relative;
}

.testimonial-avatar-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  margin-bottom: -55px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  background: #fff;
  transition: transform .4s ease;
}

.testimonial-modern-card:hover .testimonial-avatar-img {
  transform: scale(1.1) rotate(-2deg);
}

/* BODY */
.testimonial-body {
  padding: 72px 28px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-stars {
  color: #f6e926;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, .7);
  margin-bottom: 22px;
  position: relative;
}

.testimonial-text::before {
  content: "“";
  position: absolute;
  left: -10px;
  top: -20px;
  font-size: 4rem;
  color: rgba(41, 37, 89, .15);
  font-family: serif;
}

.testimonial-name {
  margin: 0;
  font-weight: 900;
  color: #292559;
  letter-spacing: .2px;
}

.testimonial-role {
  font-size: .9rem;
  color: rgba(0, 0, 0, .55);
  font-weight: 600;
}

.section-fondo {
  background-image: url("../svg/sun-tornado.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* o contain */

}

/* RESPONSIVE */
@media (max-width: 768px) {
  .testimonial-body {
    padding: 64px 22px 28px;
  }

  .testimonial-avatar-img {
    width: 96px;
    height: 96px;
  }
}

/* Logo Dimensiones */
.imagen_logo {
  width: 3px;
  height: 60px;

}



.heroEffects {
  height: 80vh;
  position: relative;
  z-index: 0;
  /* mejor que -1 para que no se esconda */
  top: 0;
  left: 0;
  overflow: hidden;
  /* CLAVE: para que el fondo se vaya con el scroll */
}

/* Fondo: antes FIXED, ahora ABSOLUTE para que desaparezca al scrollear */
.heroEffects .bg {
  height: 80vh;
  position: absolute;
  /* antes fixed */
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("../img/banner.png");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
}

/* Sombra: antes FIXED, ahora ABSOLUTE */
.heroEffects .shade {
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 3;
  height: 100vh;
  position: absolute;
  /* antes fixed */
  top: 0;
  left: 0;
  width: 100%;
}

/* Título */
.heroEffects .title {
  width: 100%;
  position: relative;
  z-index: 4;
  /* encima del bg y shade */
}

.heroEffects .title .text {
  z-index: 1;
  width: 100%;
  text-align: center;
  color: white;
  padding: 4em;
  background: rgba(0, 0, 0, 0.6);
}

/* Flecha: antes FIXED, ahora ABSOLUTE */
.heroEffects .arrow {
  position: absolute;
  /* antes fixed */
  left: 50%;
  margin-left: -20px;
  bottom: 0;
  width: 40px;
  height: 40px;
  opacity: 1;
  z-index: 5;
}

/* Centrado vertical */
.centerV {
  display: table;
  height: 100%;
}

.centerV>div {
  display: table-cell;
  vertical-align: middle;
}

/* Tipografías / estilos */



/* Contenido */



/* Animación (igualita) */
.bouncy {
  animation: Weeeeeeeeeee 3s infinite cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes Weeeeeeeeeee {
  0% {
    transform: translate(0, 0px);
    animation-timing-function: cubic-bezier(0.19, 0.28, 0.27, 1);
  }

  11% {
    transform: translate(0, -25px) scaleX(0.8);
    animation-timing-function: cubic-bezier(0.57, 0.01, 0.84, 0.5);
  }

  20% {
    transform: translate(0, 0px) scaleY(0.8);
    animation-timing-function: cubic-bezier(0.19, 0.28, 0.27, 1);
  }

  28% {
    transform: translate(0, -10px);
    animation-timing-function: cubic-bezier(0.57, 0.01, 0.84, 0.5);
  }

  36% {
    transform: translate(0, 0px);
    animation-timing-function: cubic-bezier(0.19, 0.28, 0.27, 1);
  }

  100% {
    transform: translate(0, 0px);
    animation-timing-function: cubic-bezier(0.19, 0.28, 0.27, 1);
  }
}

/* Layout base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

.hero-img {
  position: relative;
  min-height: 190px;
}

#videoCanvas {
  width: 100%;
  height: 100%;
}

/* BAJAR ALTURA DEL HERO (zona video/img) */
#heroCarousel .hero-img {
  height: 500px !important;
  min-height: 0 !important;
}

/* que el canvas llene esa altura */
#heroCarousel #videoCanvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* para que las otras slides con <img> también respeten la altura */
#heroCarousel .carousel-item .hero-img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.contenedor_loop {
  width: 100vw;
  height: 70vh;


}

.p-4 {
  padding: 5rem !important;
}

.credit-img {
  width: 100%;
  height: auto;
  /* antes 400px */
  object-fit: cover;
  border-radius: 1.5rem;
}

/* Fondo especial para tarjetas de créditos más transparente */
.credit-card-bg {
  background: rgba(41, 37, 89, 0.7) !important;
  /* Puedes ajustar el valor de 0.7 para más o menos transparencia */
}

/* Fondo más claro solo para la tarjeta Monto */
.card-monto-bg {
  background: #5a99f8e0 !important;
  /* Morado más claro */
  color: var(--negro) !important;
}

.stiker-bg {
  background: #7add7ae0 !important;
  color: var(--amarillo-principal) !important;
}

/* RESPONSIVE AJUSTES PARA CREDITOS */
@media (max-width: 767.98px) {
  .credit-chip .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .credit-chip {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .credit-chip .card {
    margin-bottom: 1rem;
  }

  .credit-card .card-body,
  .credit-card-bg .card-body {
    padding: 1.2rem !important;
  }

  .credit-img {
    min-height: 180px;
    height: auto;
    border-radius: 1rem;
  }

  .row.align-items-center {
    flex-direction: column !important;
  }

  .modal-content {
    border-radius: 1rem !important;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
}

.icono-titulo{
  height: 100px;
  width: auto;
}

.icono-3d{
  transform-style: preserve-3d;
  transition: transform 0.9s ease;
  will-change: transform;
}

.icono-3d:hover{
  transform: perspective(800px) rotateY(360deg);
}

/* ===== HERO BANNER ===== */
.hero-stage,
.hero-shape {
  position: relative;
}

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.shadow-soft {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.hero-banner-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
  display: block;
}

.hero-stage:hover .hero-banner-img {
  transform: scale(1.03);
}

