/* ==========================
   INICIO DEL STYLE
   ========================== */
:root {
  --color-principal: #00bda6;
  --color-principal-hover: #008b76;
  --color-secundario: #ff7a00;
  --color-secundario-dark: #e56600;
  --color-whatsapp: #25d366;
  --color-logo-azul: #1e90ff;
  --color-fondo: #f7f9fb;
  --color-texto: #222;
  --color-acento: #ffffff;
  --hero-gradient: linear-gradient(to right, #00bda6, #008b76);
  --fuente-base: 'Segoe UI', Arial, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: 0.18s ease;
  --sombra-base: 0 6px 18px rgba(0,0,0,0.08);
  --sombra-intensa: 0 18px 48px rgba(0,0,0,0.2);
}

/* ==========================
   RESET / BASE
   ========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}

html, body { height: 100%; }

body {
  font-family: var(--fuente-base);
  background: var(--color-fondo);
  color: var(--color-texto);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  padding-top: 60px;
}

a { text-decoration: none; color: inherit; }
a:hover { opacity: 0.88; }

a:focus, button:focus, input:focus {
  outline: 3px solid rgba(0,189,166,0.14);
  outline-offset: 3px;
}

/* ==========================
   SECCIONES / CARDS / LOGROS / BENEFICIOS
   ========================== */
.beneficios,
.compartir,
.programas-formativos,
.sectores-competencias,
.formulario,
.beneficios-persona,
.progress-block,
.plan-estudios,
.faq-section {
  padding: 40px 20px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: -15px;
}

.card {
  background: var(--color-acento);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra-base);
  text-align: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 12px 30px rgba(0,0,0,0.1), 0 5px 15px rgba(0,189,166,0.15);
}

.card-programas {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #e9fdfb 100%
  );
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--sombra-base);
  text-align: center;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275),
              box-shadow 0.4s ease;
}

.card-programas:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15),
              0 12px 30px rgba(0,0,0,0.1),
              0 5px 15px rgba(0,189,166,0.15);
}

.icono { font-size: 2.2rem; margin-bottom: 12px; }

.btn-cta-small {
  display: inline-block;
  background: var(--color-principal);
  color: var(--color-acento);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-cta-small:hover { 
  background: var(--color-principal-hover); 
  transform: translateY(-2px); 
}

/* ==========================
   HEADER FIJO
   ========================== */
.sticky-header {
  position: fixed; top: 0; left: 0; right: 0;
  background: white;
  padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: var(--sombra-base);
  z-index: 1000;
}

.logo-area { display: flex; align-items: center; gap: 14px; }

.rocket { font-size: 1.8rem; line-height: 1; }

.text-area { display: flex; flex-direction: column; gap: 4px; }

.brand {
  font-size: 1.9rem;
  font-weight: 900;
  font-style: italic;
  color: var(--color-logo-azul);
  line-height: 1;
}

.slogan {
  font-size: 0.92rem;
  font-weight: 600;
  font-style: italic;
  color: #1e90ff;
  letter-spacing: 0.5px;
}

.btn-inscribete {
  background: var(--color-secundario);
  color: white;
  padding: 13px 30px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(255,122,0,0.25);
}

.btn-inscribete:hover {
  background: var(--color-secundario-dark);
  transform: translateY(-3px);
}

/* Móvil Header */
@media(max-width:480px) {
  .sticky-header { padding: 12px 16px; }
  .rocket { font-size: 1.6rem; }
  .brand { font-size: 1.6rem; }
  .slogan { font-size: 0.8rem; }
  .btn-inscribete { padding: 11px 22px; font-size: 1rem; }
}

/* ==========================
   BOTÓN WHATSAPP GLOBAL (ÚNICO)
   ========================== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-whatsapp);
  color: white;
  padding: 10px 32px;
  border-radius: 18px;
  border: 3px solid #ffffff !important;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(37,211,102,0.32);
  transition: all var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(37,211,102,0.42);
}

/* Versión pequeña */
.btn-whatsapp.sm {
  padding: 11px 22px;
  font-size: 0.98rem;
  gap: 8px;
}

/* ==========================
   HERO PRINCIPAL
   ========================== */
.hero {
  margin: 20px 0 -10px 0;
  padding: 40px 20px;
  background: var(--hero-gradient);
  color: var(--color-acento);
  text-align: center;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.titulo-principal {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 10px;
}

.descripcion-principal {
  font-size: 1.15rem;
  margin: 0 auto 18px;
  max-width: 720px;
}

/* ==========================
   SECCIÓN ASESOR
   ========================== */

.asesor-intro {
  background: #e9fdfb;
  padding: 20px 20px;
  text-align: center;
  margin-top: 30px;
  position: relative;
}

/* Línea superior */
.asesor-intro::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-principal) 20%, 
    var(--color-principal) 80%, 
    transparent 100%
  );
}

/* Línea inferior */
.asesor-intro::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-principal) 20%, 
    var(--color-principal) 80%, 
    transparent 100%
  );
}

.asesor-intro-content {
  max-width: 600px;
  margin: 0 auto;
}

.asesor-nombre {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-principal);
  font-style: italic;
  line-height: 1.0; /* interlineado mínimo */
}

.asesor-frase {
  font-style: italic;
  color: rgba(0,0,0,0.6);
  margin-bottom: 18px;
}

.btn-perfil {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-principal);
  color: var(--color-acento);
  padding: 10px 20px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(37,211,102,0.32);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-perfil:hover {
  background: var(--color-principal-hover);
  transform: translateY(-2px);
}

.btn-perfil {
  display: block;
  width: 100%;
  white-space: normal;
  text-align: center;
  word-wrap: break-word;
}

/* ==========================
   MODAL DEL ASESOR
   ========================== */

/* ==========================
   MODAL ASESOR – FINAL MIX
   ========================== */

.modal-asesor {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  padding: 20px;
  justify-content: center;    /* centra horizontal */
  align-items: center;        /* centra vertical */
  overflow-y: auto;           /* permite scroll */
}

.modal-asesor-content {
  background: #ffffff;
  max-width: 820px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  margin: 50px auto;          /* mantiene tu separación elegante */
  padding: 28px;
  border-radius: 14px;
  box-shadow: var(--sombra-intensa);
  position: relative;
  animation: modalIn 0.25s ease-out;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Botón de cerrar (X) */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #444;
  cursor: pointer;
}
.modal-close:hover {
  color: var(--color-principal);
}

/* Contenedor general */
.asesor-profile {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Foto */
.asesor-photo {
  display: flex;            /* flexbox en el contenedor */
  justify-content: center;  /* Centrar horizontalmente */
  align-items: center;      /* Centrar verticalmente */
}

.asesor-photo img {
  width: 180px;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--sombra-base);
}

/* Texto */
.asesor-info {
  flex: 1;
  min-width: 260px;
}

.asesor-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-principal);
}

.asesor-cargo {
  font-weight: 600;
  color: #666;
  margin-bottom: 12px;
}

.asesor-bio p {
  margin-bottom: 12px;
  line-height: 1.55;
}

.asesor-especialidades h4 {
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.asesor-especialidades ul {
  list-style: none;
  padding-left: 0;
}

.asesor-especialidades li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Botón cerrar */
.btn-cerrar-modal {
  background: var(--color-principal);
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
}
.btn-cerrar-modal:hover {
  background: var(--color-principal-hover);
  transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 600px) {
  .modal-asesor-content {
    margin: 20px auto;
    padding: 22px;
  }
  .asesor-profile {
    flex-direction: column;
    text-align: center;
  }
  .asesor-photo img {
    margin: 0 auto;
  }
}

/* ==========================
   SECCIÓN IMPACTO
   ========================== */
.impacto-intro {
  background: #e9fdfb;
  padding: 20px 20px;
  text-align: center;
  margin-top: 30px;
  position: relative;
}
/* Línea superior */
.impacto-intro::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-principal) 20%, 
    var(--color-principal) 80%, 
    transparent 100%
  );
}
/* Línea inferior */
.impacto-intro::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-principal) 20%, 
    var(--color-principal) 80%, 
    transparent 100%
  );
}
.impacto-intro-content {
  max-width: 600px;
  margin: 0 auto;
}
.impacto-nombre {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-principal);
  font-style: italic;
  line-height: 1.0; /* interlineado mínimo */
}
.impacto-frase {
  font-style: italic;
  color: rgba(0,0,0,0.6);
  margin-bottom: 18px;
}

.btn-impacto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-principal);
  color: var(--color-acento);
  padding: 10px 20px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(37,211,102,0.32);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-impacto:hover {
  background: var(--color-principal-hover);
  transform: translateY(-2px);
}
.btn-impacto {
  display: block;
  width: 100%;
  white-space: normal;
  text-align: center;
  word-wrap: break-word;
}

/* ==========================
   MODAL DEL IMPACTO
   ========================== */
.modal-impacto {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  padding: 20px;
  justify-content: center;    
  align-items: center;        
  overflow-y: auto;           
}
.modal-impacto-content {
  background: #ffffff;
  max-width: 820px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  margin: 50px auto;          
  padding: 28px;
  border-radius: 14px;
  box-shadow: var(--sombra-intensa);
  position: relative;
  animation: modalIn 0.25s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Botón de cerrar (X) */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #444;
  cursor: pointer;
}
.modal-close:hover {
  color: var(--color-principal);
}

/* Contenedor general */
.impacto-profile {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}
/* Foto */
.impacto-photo {
  display: flex;            
  justify-content: center;  
  align-items: center;      
}
.impacto-photo img {
  width: 180px;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--sombra-base);
}

/* Texto */
.impacto-info {
  flex: 1;
  min-width: 260px;
}
.impacto-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-principal);
}
.impacto-cargo {
  font-weight: 600;
  color: #666;
  margin-bottom: 12px;
}
.impacto-bio p {
  margin-bottom: 12px;
  line-height: 1.55;
}

.impacto-especialidades h4 {
  margin-top: 14px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}
.impacto-especialidades ul {
  list-style: none;
  padding-left: 0;
}
.impacto-especialidades li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Botón cerrar */
.btn-cerrar-modal {
  background: var(--color-principal);
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
}
.btn-cerrar-modal:hover {
  background: var(--color-principal-hover);
  transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 600px) {
  .modal-impacto-content {
    margin: 20px auto;
    padding: 22px;
  }
  .impacto-profile {
    flex-direction: column;
    text-align: center;
  }
  .impacto-photo img {
    margin: 0 auto;
  }
}

/* ==========================
   SECCIÓN PROGRAMAS (CORREGIDA)
   ========================== */

.btn-programas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-principal);
  color: var(--color-acento);
  padding: 10px 20px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-programas:hover {
  background: var(--color-principal-hover);
  transform: translateY(-2px);
}

.btn-programas {
  display: block;
  width: 100%;
  white-space: normal;
  text-align: center;
  word-wrap: break-word;
}

/* ==========================
   FOOTER — ESTILO ORIGINAL
   ========================== */
.footer {
  background: #1b1b1b;
  padding: 20px 10px;
  text-align: center;
}

.footer p {
  margin-bottom: 10px;
  color: #e5e5e5;
  font-size: 1rem;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/* Botón Web */

.btn-web {
  background: #ffffff !important;
  color: #007bff !important;
  padding: 10px 32px !important;
  border-radius: 9px !important;
  border: 3px solid #007bff !important;
  font-size: 1.05rem !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,123,255,0.22);
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
}

.btn-web:hover {
  background: #007bff !important;
  color: white !important;
  transform: translateY(-2px);
}

/* Responsive Footer */
@media(max-width:480px) {
  .footer-buttons {
    width: 100%;
    max-width: 360px;
    gap: 18px;
  }

  .btn-whatsapp,
  .btn-web {
    width: 100%;
  }
}

/* ==========================
   ACCESIBILIDAD
   ========================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.visually-visible {
  position: static;
  width: auto; height: auto;
  clip: auto;
  overflow: visible;
}

/* ==========================
   TARJETA "COMPARTIR" (restaurada a diseño original)
   ========================== */
.card-compartir {
  background: #e6fff225; /* verde muy claro (fondo) */
  border: 3px dashed var(--color-whatsapp);
  border-radius: 16px;
  padding: 22px;
  box-shadow: none;
  color: #264d3c;
  text-align: center;
  max-width: 760px;
  margin: 18px auto;
}

.card-compartir .icono {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 6px auto 14px;
  border-radius: 10px;
  background: rgba(0,0,0,0.03);
  font-size: 28px;
  color: inherit;
}

.card-compartir h3 {
  margin: 6px 0 12px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1f4b3e;
}

.card-compartir p {
  margin: 8px 0;
  line-height: 1.45;
  color: #3e554a;
  font-size: 0.98rem;
}

/* contenedor de acciones dentro de la tarjeta */
.card-compartir .acciones-compartir {
  margin-top: 18px;
}

/* botón principal — pill grande estilo WhatsApp */
.card-compartir .btn-cta-whatsapp {
  display: inline-block;
  background: var(--color-whatsapp);
  color: var(--color-acento);
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37,211,102,0.18);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  vertical-align: middle;
}

/* icono dentro del botón si existe */
.card-compartir .btn-cta-whatsapp .icon {
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

/* hover & active */
.card-compartir .btn-cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37,211,102,0.22);
  background: #1ebe57;
}

/* cuadro de cita / nota interior (recuadro con raya izquierda) */
.card-compartir blockquote,
.card-compartir .highlight {
  margin: 18px auto 0;
  padding: 16px 18px;
  background: rgba(0,189,166,0.03);
  border-left: 6px solid rgba(0,189,166,0.18);
  border-radius: 8px;
  font-style: italic;
  color: #2f5246;
  max-width: calc(100% - 36px);
  box-sizing: border-box;
}

/* botón Whatsapp desde CARD */
.btn-whatsapp {
  display: inline-block;
  background: var(--color-whatsapp);   /* verde WhatsApp */
  color: var(--color-acento);          /* texto blanco */
  padding: 10px 30px;
  border-radius: 9px;                /* pill */
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37,211,102,0.18);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  vertical-align: middle;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #1ebe57;                 /* verde un poco más oscuro al pasar el mouse */
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37,211,102,0.22);
}

/* responsive para la tarjeta compartir */
@media (max-width: 420px) {
  .card-compartir {
    padding: 16px;
    border-width: 3px;
    border-radius: 14px;
  }
  .card-compartir h3 { font-size: 1.12rem; }
  .card-compartir .btn-cta-whatsapp {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
  }
}

/* ==========================
  INICIO DEL FORMULARIO
   ========================== */
.formulario {
  padding: 50px 20px;
  background: var(--color-acento);
  text-align: center;
}
.formulario form {
  margin-top: 20px;
  display: grid;
  gap: 15px;
  max-width: 500px;
  margin-inline: auto;
}
.formulario input,
.formulario button {
  padding: 12px;
  border: 1px solid #d1d1d1;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}
.formulario button {
  background: var(--color-secundario);
  color: var(--color-acento);
  border: none;
  font-weight: 800;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.formulario button:hover { background: var(--color-secundario-dark); transform: translateY(-2px); }

/* ==========================
   FOOTER PEGAJOSO
   ========================== */

#footer-sticky {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  padding: 4px 0;
  border-top: 2px solid #ff6a00;
}

#footer-sticky .sticky-content {
  display: grid !important;
  grid-template-columns: 10% 25% 5% 50% 10% !important;
  align-items: center;
  width: 100%;
}

/* ===== Botones EXACTAMENTE como los tenías ===== */
.btn-sticky {
  display: block;
  text-align: center;
  background: #ff6a00;
  color: #ffffff;
  padding: 8px 0;     /* VOLVEMOS A TU ALTURA NORMAL */
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.95rem; /* REGRESAMOS A TAMAÑO NORMAL */
  border: none;
  box-shadow: none;
  cursor: pointer;
}

/* Botón del dropdown con mismo estilo */
.sticky-dropdown .btn-sticky {
  width: 100%;
}

.space {
  height: 1px;
}

/* IMPORTANTÍSIMO: espacio para que no se superponga */
body {
  padding-bottom: 90px !important;
}

/* ==========================
   MENU DESPLEGABLE
   ========================== */

.sticky-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  bottom: calc(100% + 6px); /* se abre arriba del botón */
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1px solid #ff6a00;
  border-radius: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none; /* aquí controla el JS */
  z-index: 20000; /* por encima del footer */
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 12px; /* tamaño normal ORIGINAL */
  color: #ff6a00;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem; /* tamaño normal */
}

.dropdown-menu li a:hover {
  background: #ff6a00;
  color: #ffffff;
}