* { box-sizing: border-box; margin: 0; padding: 0; }

.aparecer,
.aparecer-2,
.aparecer-3 {
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.aparecer.visible,
.aparecer-2.visible,
.aparecer-3.visible {
  opacity: 1;
}

.fade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Clase que activa la animación */
.fade-in {
  opacity: 1;
  transform: translateY(0);
}
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999; /* para que quede por encima del contenido */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

#site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Compensar el espacio que ocupa el header fijo */
body {
  padding-top: 100px; /* ajustá este valor a la altura real de tu header */
}


form#wpum-submit-login-form {
    max-width: 50%;
    /* margin: auto; */
    background-color: #E6E6E6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 auto;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background-color: #E6E6E6;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1 {
    float: left;
    width: 100%;
}

.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    float: left;
    width: 100%;
}


/* ===== Campos de texto (Woo usa .input-text en casi todo) ===== */
.woocommerce .input-text,
.woocommerce-page .input-text,
.woocommerce form .input-text,
.woocommerce-page form .input-text,
.woocommerce textarea.input-text {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: "Inter", "Urbanist", sans-serif;
  color: #1a1a1a;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  appearance: none;
}

.woocommerce .input-text::placeholder,
.woocommerce textarea.input-text::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.woocommerce .input-text:hover,
.woocommerce textarea.input-text:hover {
  border-color: #4d77ff;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(77,119,255,0.1);
}

.woocommerce .input-text:focus,
.woocommerce textarea.input-text:focus {
  border-color: #4d77ff;
  box-shadow: 0 0 0 4px rgba(77,119,255,0.15);
  background: #ffffff;
}

/* ===== Textarea tamaño cómodo ===== */
.woocommerce textarea.input-text {
  min-height: 120px;
  resize: vertical;
  line-height: 1.4;
}

/* ===== Selects nativos (los que NO son select2) ===== */
.woocommerce select.select,
.woocommerce select {
  width: 100%;
  padding: 0.3rem; /* espacio para flecha */
  font-size: 1rem;
  font-family: "Urbanist", sans-serif;
  color: #1a1a1a;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  transition: all .25s ease;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.woocommerce select:hover { border-color:#4d77ff; background:#fff; box-shadow:0 2px 6px rgba(77,119,255,.1); }
.woocommerce select:focus { border-color:#4d77ff; box-shadow:0 0 0 4px rgba(77,119,255,.15); background:#fff; }

/* ===== Select2 (Woo lo usa para Provincia, etc.) ===== */
.select2-container--default .select2-selection--single {
  height: auto;
  min-height: 52px;
  padding: .75rem 2.25rem .75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  background: #f9fafb;
  transition: all .25s ease;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal;
  padding-left: 0;
  color: #1a1a1a;
  font-size: 1rem;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: .75rem;
}
.select2-container--default .select2-selection--single:hover { border-color:#4d77ff; background:#fff; box-shadow:0 2px 6px rgba(77,119,255,.1); }
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:focus-visible {
  border-color:#4d77ff; box-shadow:0 0 0 4px rgba(77,119,255,.15);
  outline: none;
}

/* ===== Estados de error Woo ===== */
.woocommerce form .form-row.woocommerce-invalid .input-text,
.woocommerce form .form-row.woocommerce-invalid select,
.select2-container--default.woocommerce-invalid .select2-selection--single {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 4px rgba(220,38,38,.15) !important;
}

/* ===== Etiquetas y layout limpio ===== */
.woocommerce form .form-row label {
  display:block;
  margin: 0 0 .35rem;
  font-weight: 600;
  color: #374151;
}
.woocommerce .form-row { margin-bottom: 1rem; }

/* ===== Botón de mostrar contraseña Woo ===== */
.woocommerce .password-input .show-password-input {
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
}
.woocommerce .password-input .show-password-input:hover {
  border-color:#4d77ff; box-shadow:0 2px 6px rgba(77,119,255,.1);
}

/* ===== Dark mode ===== */
@media (prefers-color-scheme: dark) {
  .woocommerce .input-text,
  .woocommerce textarea.input-text {
    background: #1f2937; color:#f9fafb; border-color:#374151;
  }
  .woocommerce .input-text:hover,
  .woocommerce textarea.input-text:hover {
    background:#111827; border-color:#60a5fa; box-shadow:0 2px 6px rgba(96,165,250,.15);
  }
  .woocommerce .input-text:focus,
  .woocommerce textarea.input-text:focus {
    background:#111827; border-color:#60a5fa; box-shadow:0 0 0 4px rgba(96,165,250,.25);
  }
  .woocommerce select,
  .woocommerce select.select {
    background:#1f2937; color:#f9fafb; border-color:#374151;
  }
  .select2-container--default .select2-selection--single {
    background:#1f2937; border-color:#374151;
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered { color:#f9fafb; }
}

/* ===== Respeto a reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
  .woocommerce .input-text,
  .woocommerce textarea.input-text,
  .woocommerce select,
  .select2-container--default .select2-selection--single { transition:none; }
}

body {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  line-height: 1.25;
  color: #333;
  background: #F9F9FF;
}
#site-header .wrap img {
    height: 75px;
}
.copy {
  text-align: right;
  font-style: italic;
  font-size: 0.75rem;
  align-content: flex-end;
}
.cursos-cta-wrap{ text-align:center; margin-top:1.5rem; }
.btn-large{ padding:.75rem 1.5rem; font-size:1.05rem; }

/* Tienda Woo → misma grilla que la home */
.woocommerce ul.products{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:1.5rem;
  list-style:none;
  margin:0;
  padding:0;
}
.woocommerce ul.products li.product{
  margin:0; float:none; width:auto;
}
/* Tienda Woo => misma grilla que el home, ahora con <div class="products grid-cursos"> */
.woocommerce .products.grid-cursos{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
.woocommerce .products.grid-cursos .product{
  margin: 0;
}


.logo-footer {
max-width: 1100px;
    margin: 0 auto;
}
a { color: #3D3F95; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1100px; margin: 0 auto;}
.wrap-2 {
  box-sizing: border-box;
  background-color: #E6E6E6; 
  border-radius: 16px; 
  padding: 6rem 3rem;
}
h1, h2, h3 {
    color: #3D3F95;
    
}
/* HEADER */
#site-header {
  background: #F9F9FF;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
  box-sizing: border-box;
}
#site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#site-header .logo { font-weight: 700; font-size: 1.1rem; color: #1f3a4a; }
#site-header .menu { display: flex; gap: 1.5rem; list-style: none; }
#site-footer .menu {
max-width: 1200px;
    margin: 0 auto;
    flex-direction: column;
    gap: 0rem;

}
#site-footer .menu a {
    color: #4D77FF;
    text-decoration: none;
}
#site-header .menu li a { font-weight: 500; }
/* Estilo base del botón campus */
#site-header .btn-campus,
input[type="submit"].button {
  box-sizing: border-box;
  padding: 1rem 1.5rem;
  background: #4D77FF;
  color: #F9FAFB;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

/* Hover y focus con microinteracciones */
input[type="submit"].button:hover,
#site-header .btn-campus:hover {
  background: #365adf; /* un azul más oscuro */
  transform: translateY(-2px);
}

input[type="submit"].button:focus,
#site-header .btn-campus:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(77, 119, 255, 0.3);
}

/* Estado deshabilitado */
input[type="submit"].button:disabled {
  background: #a3aed0;
  cursor: not-allowed;
  transform: none;
}


.top {
  width: 100%;
}
/* HERO */
#hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  box-sizing: border-box;
  padding: 10rem 1rem;
  background: url("../img/esquina.png") center/cover no-repeat;
}
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    rgba(61,63,149,.8)
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" fill="white" opacity="0.05"><circle cx="20" cy="20" r="2"/></svg>') repeat;
  background-size: 40px 40px;
  z-index: 0;
}
section {
  padding-top: 3rem;
}

#hero .wrap{
  position: relative;
  z-index: 1;
  max-width: 800px;
  color:#fff;
}
#hero h1 { font-size: 3rem; margin-bottom: .5rem; color: #F9F9FF;}
#hero p { color: #F9F9FF; margin-bottom: 1rem; }
#hero .cta-group { display: flex; justify-content: center; gap: 1rem; }
.btn-primary, .btn-secondary {
  display: inline-block;
  box-sizing: border-box;
  padding: .75rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
}
.btn-primary, .cursos-cta-wrap .btn, .card-curso .btn, .woocommerce #payment #place_order, .woocommerce-page #payment #place_order { 
  display: inline-block;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: #FFA500; color: #F9FAFB;
  border-radius: 8px;
  transition: background-color 0.3s ease;
    animation: pulso-suave 2.5s infinite;
  animation-delay: 1s; /* para que no aparezca de golpe */
  transition: transform 0.2s ease-in-out;

}

@keyframes pulso-suave {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.4); /* color acorde a tu estilo */
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 10px rgba(42, 157, 143, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(42, 157, 143, 0);
  }
}
.btn-secondary {color: #e6e8e6; }

/* BADGES */
.badges { display: flex; gap: 1rem; justify-content: center; list-style: none; }
.badge {
  text-align: center;
  flex: 1;
}
.badge-top { font-weight: 900; font-size: 1.5rem; display: block; color: #4D77FF; text-transform: uppercase;}
.aval-overline, .badge-label { color: #212121; font-size: .9rem; }

/* BULLETS */
.bullets { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1rem; list-style: none; }
.bullets li {
  background: #F9FAFB;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
}

/* GRID CURSOS */
.grid-cursos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.5rem;
  padding: 0 1.5rem;
}
.card-curso {
  background: #F9FAFB;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.card-curso h3 { margin-bottom: .5rem; }
.card-curso p { color: #212121; margin-bottom: .75rem; }

/* section.wrap {
  padding: 2rem 0rem !important;
} */

.input-text {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: "Inter", "Urbanist", sans-serif;
  color: #1a1a1a;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
  transition: all 0.25s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* Placeholder moderno (tono suave y accesible) */
.input-text::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

/* Hover con efecto sutil */
.input-text:hover {
  border-color: #4d77ff;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(77,119,255,0.1);
}

/* Focus accesible + glow moderno */
.input-text:focus {
  border-color: #4d77ff;
  box-shadow: 0 0 0 4px rgba(77,119,255,0.15);
  background: #ffffff;
}

/* Dark mode automático */
@media (prefers-color-scheme: dark) {
  .input-text {
    background: #1f2937;
    color: #f9fafb;
    border-color: #374151;
  }
  .input-text::placeholder {
    color: #9ca3af;
  }
  .input-text:hover {
    border-color: #60a5fa;
    background: #111827;
  }
  .input-text:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 4px rgba(96,165,250,0.25);
    background: #111827;
  }
}


.card-badges{display:flex;gap:.5rem;margin-top:.5rem}
.badge{display:inline-block;padding:.25rem .6rem;border-radius:.5rem;font-size:.85rem;font-weight:600;color:#fff}
.badge.modalidad-virtual{background:#3D3F95}     /* Virtual */
.badge.modalidad-presencial{background:#2A9D8F}  /* Presencial */

.card-summary,
.jlc-loop-excerpt{margin-top:.5rem;line-height:1.45}


.top-wrap {
  display: flex;
  align-items: center; 
  justify-content: space-between; 
  gap: 1rem; 
  padding-bottom: 1.5rem;
  box-sizing: border-box;
}

.top-wrap h2 {
  margin: 0;  
}

.filtros {
  display: flex;
  gap: 0.5rem; 
}

.filtros button {
  box-sizing: border-box;
  padding: 0.5rem 1rem;
  border: 1px solid #4D77FF;
  cursor: pointer;

  background: #4D77FF; 
  color: #F9FAFB;
  border-radius: 4px;
  font-size: .9rem;
}
.card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9; 
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: var(--line);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}
.card-body {
  box-sizing: border-box;
  padding: 1.5rem;
}



/* INICIOS */
#inicios { background: #F9FAFB; text-align: center; }
#inicios p { margin-bottom: .5rem; }
#inicios .btn { padding: .5rem 1rem; background: #1f3a4a; color: #F9FAFB; border-radius: 4px; }

/* RESULTADOS */
#resultados ul { list-style: disc; padding-left: 1.5rem; }
#resultados li { margin-bottom: .5rem; }

.avales-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 5rem;
}

.titulo-wrap-2 {
  box-sizing: border-box;
    padding-bottom: 2rem;
    text-align: center;
}
.aval-card{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.aval-media{
  display:flex; align-items:center; justify-content:center;
  border-radius:10px;
}
.aval-logo{
  max-height: 100px; max-width: 100%; object-fit: contain;
}


.aval-body{ display:flex; flex-direction:column; gap:.25rem; }
.aval-title{
  font-size:1.05rem; line-height:1.25;  margin:0;
}
.avales-link{ display:inline-block; margin-top:.75rem; }
/* TIMELINE */
.steps { display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; list-style: none; padding-top: 1rem;}
.steps li {
  background: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 3rem;
  box-sizing: border-box;
}
h2#como-title {
    padding-bottom: 1rem;
}
.steps h3 { Color: #F9FAFB; margin-bottom: .5rem; }
.steps p { color: #F2F2F2; font-size: .95rem; }

/* CTA FINAL */
#cta-final { background: #3D3F95; text-align: center; color: #F9FAFB; 
  padding: 7rem 3rem; 
  box-sizing: border-box;
  margin-top: 4rem; }
#cta-final h2 { margin-bottom: 2.5rem; color: #F2F2F2; font-size: 3rem;}

/* FOOTER */
#site-footer {
  background: #101820;
  color: #ccc;
  box-sizing: border-box;
  padding: 2rem 1rem;
  font-size: .9rem;
}
.footer-links { list-style: none; display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-links a { color: #ccc; }
.footer-links a:hover { color: #F9FAFB; }

#site-footer {
  background: #333;
  color: #fff;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.footer-wrap {
  display: flex;
padding: 2rem 0;
box-sizing: border-box;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-col {
  flex: 1;

}

.footer-col h3 {
  margin-bottom: .75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-col p, 
.footer-col a, 
.footer-col li {
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: .5rem;
}
/* ====== Desktop por defecto ====== */
.hamburger, .mobile-menu { display: none; }
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;         /* ocupa toda la altura de la ventana */
  background: #fff;      /* o el color que quieras para cubrir */
  overflow-y: auto;      /* scroll interno si el contenido se pasa */
  display: none;         /* oculto por defecto */
  z-index: 9998;         /* por encima del contenido */
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.whatsapp-float.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-tooltip {
  background: #25D366;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.whatsapp-tooltip.visible {
  opacity: 1;
  transform: translateX(0);
}



/* Botón hamburguesa */
.hamburger{ background:transparent; border:0; padding:.5rem; cursor:pointer; border-radius:10px; }
.hamburger-box{ display:inline-block; width:28px; height:20px; position:relative; }
.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
  width: 28px;
  height: 2px;
  background: #3D3F95;
  position: absolute;
  left: 0;
  content: "";
  transform-origin: center; /* rotación siempre desde el centro */
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}

.hamburger-inner { top: 50%; transform: translateY(-50%); }  /* centrada */
.hamburger-inner::before { top: -8px; }
.hamburger-inner::after  { top: 8px; }

/* Estado activo → X simétrica */
.hamburger.is-active .hamburger-inner {
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.is-active .hamburger-inner::before {
  top: 0;  /* al centro */
  opacity: 0;
}
.hamburger.is-active .hamburger-inner::after {
  top: 0;  /* al centro */
  transform: rotate(-90deg);
}


/* Panel móvil a pantalla completa */
.mobile-menu.is-open {
  display: flex !important;        /* ahora sí es flex */
  flex-direction: column;          /* hijos apilados */
  justify-content: center;       /* los empuja hacia abajo */
  padding: 5rem 1.5rem;
}
.mobile-menu.is-open{ display:block; }
.mobile-menu__list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap: .75rem; }
.mobile-menu__list a{ font-family:'Sora',sans-serif; font-weight:600; font-size:1.1rem; color:#3D3F95; text-decoration:none; }
.mobile-menu__list .btn-campus{
  display:inline-block; margin-top:.75rem; padding:.75rem 1rem; border-radius:8px;
  background:#4D77FF; color:#fff; text-align:center;
}


.body-lock{ overflow:hidden; }

/* Responsive */
@media (max-width: 768px) {
  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }
  .footer-col {
    margin-bottom: 1.5rem;
  }
  .badges {
    display: flex
;
    gap: 5rem;
    justify-content: center;
    list-style: none;
    flex-direction: column;
}

section {
    padding-top: 5rem;

    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

section#cursos {
      padding-left: 0rem;
    padding-right: 0rem;
}
.top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.5rem;
    flex-direction: column;
}
}

@media (max-width: 720px){
.aval-card {
    display: grid;
    grid-template-columns: 1fr;  
    row-gap: 1rem; 
    background-color: #E6E6E6;
    border-radius: 16px;
    padding: 2.5rem 1.5rem;

}
.avales-grid {
    gap: 1.5rem;
}

#cta-final h2 {
    font-size: 2rem;
}

.copy {
    text-align: center;
    font-style: italic;
    font-size: 0.75rem;
}
.wrap-2 {
    box-sizing: border-box;
    background-color: transparent;
    padding: 0;
}

}
@media (max-width: 900px){
  .avales-grid{ grid-template-columns: 1fr; }
  #site-header .wrap > nav,
  #site-header .header-cta { display:none; }

 .hamburger{
  display: block;
 
  z-index: 10001;       /* mayor que el panel (9999) */
}

form#wpum-submit-login-form {
    max-width: 100%;
    /* margin: auto; */
    background-color: #E6E6E6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 auto;
}



  #site-header{
    background:transparent; border-bottom:none;

    padding: 0.5rem 1.5rem;
    box-sizing: border-box;
  }
  .mobile-menu{ position: fixed; inset:0; z-index: 9999; display:none; background:#fff; 
    padding:5rem 1.25rem 2rem; 
    box-sizing: border-box;
  }
.mobile-menu.is-open{ display:block !important; } 
    #hero {

        overflow: hidden;
        text-align: center;
        box-sizing: border-box;
        background: url(../img/esquina.webp) center / cover no-repeat;
        height: 75vh;
        display: flex
;
        align-items: self-end;
        /* justify-content: center; */
        padding: 1.5rem 1.5rem;
    }
.badge-top {
    font-weight: 900;
    font-size: 2rem;
    display: block;
    color: #4D77FF;
    text-transform: uppercase;
}

/* separa el CTA del listado y le da respiración */
#mobile-menu .mobile-menu-cta{
  border-top: 1px solid rgba(0,0,0,.08);
  margin-top: 8px;          /* separación respecto al UL */
  padding: 16px;            /* respiración interna */
}

/* que el botón ocupe todo el ancho visual y no quede pegado a bordes */
#mobile-menu .mobile-menu-cta .btn-campus{
  display: block;
  text-align: center;
  margin: 0;                /* si tu .btn-campus ya tiene margin, podés quitar esta línea */
}


#hero h1 {
    font-size: 2rem;
    margin-bottom: .5rem;
    color: #F9F9FF;
    text-align: left;
}
#hero p {
    color: #F9F9FF;
    margin-bottom: 1rem;
    text-align: left;
}
#hero .cta-group {
    display: flex
;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
}
}