
/* ================================================================
   🌐 ESTILOS GENERALES GLOBALES
=================================================================== */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* ================================================================
   🔝 BARRA SUPERIOR STICKY (Contacto rápido)
=================================================================== */
.top-sticky {
  background: #000;
  color: white;
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.top-sticky .item {
  white-space: nowrap;
  opacity: 0.9;
}
.top-sticky .separator {
  padding: 0 2px; /* Reducí este valor si querés menos espacio */
  color: rgba(255,255,255,0.4);
  font-weight: bold;
}
/* 🔹 Añade separadores automáticos entre los ítems del sticky */
.top-sticky .item:not(:last-child)::after {
  content: " | "; /* Cambiá aquí por ° o • si querés otro separador */
  color: rgba(255, 255, 255, 0.75); /* Gris clarito */
  margin: 0 0.4rem;
  font-weight: bold;
}

/* ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
   📱 MOBILE - Ajustes para top-sticky
▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ */
@media (max-width: 768px) {
  .top-sticky {
    flex-direction: row;
    align-items: stretch;
    gap: 0.3rem;
    font-size: 0.62rem;
    padding: 0.4rem;
  }
}

/* ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
   💻 TABLET - Ajustes para top-sticky
▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ */
@media (min-width: 769px) and (max-width: 1024px) {
  .top-sticky {
    font-size: 0.75rem;
    gap: 0.8rem;
    padding: 0.4rem 1rem;
  }
}


/* ================================================================
   🔰 HEADER PRINCIPAL (Logo, banner, login)
=================================================================== */
header.main {
  background: white;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
}
/* =============================================================
🔹 INICIO: ESTILOS MENÚ EN CINTA (NAVBAR-CINTA)
============================================================= */

/* ========================================
🔸 CONTENEDOR PRINCIPAL DE LA CINTA
======================================== */
.navbar-cinta {
  background-color: #003366;
  padding: 0.5rem 1rem;  /* menos padding vertical */
  min-height: 36px;
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 999;
  position: relative; /* ✅ Agregado para contener elementos absolutos */
}

/* ========================================
🔸 CONTENEDOR FLEX DEL HEADER
======================================== */
.navbar-cinta .container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Burger a la izquierda, menú a la derecha */
  flex-wrap: wrap;
  position: relative;
}

/* ========================================
🔸 MENÚ PRINCIPAL (Desktop)
======================================== */
.nav-cinta-links {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  margin-left: auto; /* Alineación derecha */
  align-items: center;
}

.nav-cinta-links li {
  position: relative;
}

.nav-cinta-links li a,
.nav-cinta-links .dropdown-toggle {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 0.4rem 0.8rem;
  display: block;
  transition: background 0.2s ease;
}

.nav-cinta-links li a:hover,
.nav-cinta-links .dropdown-toggle:hover {
  background-color: #0d6efd;
  border-radius: 5px;
}

/* ========================================
🔸 SUBMENÚS (Dropdowns)
======================================== */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #004080;
  border-radius: 5px;
  padding: 0.5rem 0;
  list-style: none;
  min-width: 180px;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  padding: 0.4rem 1rem;
  color: #ffffff;
  display: block;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
  background: #0d6efd;
}

/* =============================================================
🔹 BOTÓN BURGER (VISIBLE SOLO EN MOBILE)
============================================================= */
.burger {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  display: none;
  z-index: 1200;
}

/* =============================================================
🔹 ESTILOS RESPONSIVE (MOBILE)
============================================================= */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-cinta-links {
    flex-direction: column;
    display: none;
    background: #003366;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    gap: 0.5rem;
    margin-left: 0; /* Quita alineación derecha en mobile */
  }

  .nav-cinta-links.open {
    display: flex;
  }

  .dropdown:hover .dropdown-menu {
    position: relative;
    top: auto;
    left: auto;
  }
}

/* =============================================================
🔚 FIN: ESTILOS MENÚ EN CINTA (NAVBAR-CINTA)
============================================================= */


.logo img {
  max-height: 80px;
}
.header-banner {
  flex: 1;
  text-align: center;
}
.login-btn {
  background: #0D6EFD;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}
/* 📱 Login button en móviles */
@media (max-width: 768px) {
  header.main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .login-btn {
    margin-left: auto;
    display: inline-block;
    padding: 0.4rem 0.9rem;
    font-size: 0.95rem;
    border-radius: 6px;
    background-color: #0D6EFD;
    color: white;
    text-align: center;
    white-space: nowrap;
  }
}
/* 📱 Login button en móviles */
@media (max-width: 768px) {
  header.main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    flex: 1 1 auto;
  }

  .header-banner {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .login-btn {
    margin-left: auto;
    padding: 0.4rem 1rem;
    font-size: 0.95rem;
    border-radius: 6px;
    background-color: #0D6EFD;
    color: white;
    text-align: center;
    white-space: nowrap;
  }
}
/* 📱 Login button en móviles */
@media (max-width: 768px) {
  header.main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    flex: 1 1 auto;
  }

  .header-banner {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .login-wrapper {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .login-btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.95rem;
    border-radius: 6px;
    background-color: #0D6EFD;
    color: white;
    text-align: center;
    white-space: nowrap;
  }
}
/* 📲 Login button en tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  header.main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .login-btn {
    margin-left: auto;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 6px;
    background-color: #0D6EFD;
    color: white;
    text-align: center;
    white-space: nowrap;
  }
}
/* =============================================================
🔹 INICIO ESTILOS DEL MENÚ RESPONSIVE (DESKTOP + MOBILE)
============================================================= */

/* ================================================================
   🧭 BOTONES DE ACCESO EN MODAL
=================================================================== */
.platform-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: center;
}

.btn-platform {
  display: inline-block;
  width: 100%;
  max-width: 250px;
  padding: 0.75rem 1.2rem;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  background-color: #0D6EFD;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-platform:hover {
  background-color: #084ec1;
  transform: translateY(-1px);
}

.btn-platform.alt {
  background-color: #6f42c1;
}

.btn-platform.alt:hover {
  background-color: #5a34a3;
}


/* ================================================================
   📦 SECCIONES DINÁMICAS
=================================================================== */
section {
  background: white;
  max-width: 75%;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
section p {
  text-align: justify;
}

/* ================================================================
   📽️ SWIPER SLIDER
=================================================================== */
.swiper-container {
  max-width: 100%;
  margin: 0 auto;
}
.swiper-slide img {
  width: 100%;
  border-radius: 8px;
}

/* ================================================================
   🧩 MODAL DE INGRESO
=================================================================== */
#loginModal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
#loginModal .modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}
#loginModal .modal-content button.close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
}
/* ================================================================
   🟨 SECCIÓN DE CINTA REGISTRO (REGISTER-BANNER)
=================================================================== */
.register-banner-section {
  background: #d0f0ff; /* 🎨 Celeste claro */
  color: #fff;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  margin: 2rem auto;
  max-width: 75%;
}

.register-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
}

.register-text {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
  color: #000000; /* ← COLOR DEL TEXTO */
  font-family: 'Segoe UI', sans-serif; /* ← FUENTE */
}

.register-button {
  flex-shrink: 0;
}

.register-button button {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.register-button button:hover {
  background-color: #e0a800;
}

/* ================================================================
   🟨 MODAL DE REGISTRO
=================================================================== */
#registerModal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

#registerModal .modal-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  position: relative;
}

#registerModal .modal-content button.close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.register-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
  align-items: center;
}

.register-buttons a {
  display: inline-block;
  width: 100%;
  max-width: 250px;
  padding: 0.75rem 1.2rem;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  background-color: #0D6EFD;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.register-buttons a.alt {
  background-color: #6f42c1;
}

.register-buttons a:hover {
  background-color: #084ec1;
  transform: translateY(-1px);
}

.register-buttons a.alt:hover {
  background-color: #5a34a3;
}

/* ================================================================
   ❓ FAQ Y ACORDEÓN
=================================================================== */

.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  background-color: #e3fcec; /* Fondo general */
}

/* Botón (encabezado del FAQ cerrado/abierto) */
.accordion-button {
  font-size: 1.1rem;
  font-weight: bold;
  color: #0D6EFD;                /* Color del texto */
  background-color: #f9f9f9;     /* Fondo del encabezado */
  border: none;
  padding: 1rem;
}

/* Icono de flecha */
.accordion-button::after {
  color: #0D6EFD;
}

/* Estado activo (cuando el acordeón está abierto) */
.accordion-button:not(.collapsed) {
  background-color: #e9f2ff;     /* Fondo al abrir */
  color: #084ec1;                /* Texto activo */
}

/* Cuerpo del contenido del FAQ */
.accordion-body {
  font-size: 1rem;
  text-align: justify;
  line-height: 1.6;
  color: #444;                  /* Texto dentro del cuerpo */
  background-color: #fffbe6;    /* Fondo del contenido */
  padding: 1rem;
}
/* 🔹 Scroll para FAQ landing */
.faq-scroll-box {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 1rem;
  scroll-behavior: smooth;
  scrollbar-width: none;           /* Firefox: oculta completamente el scroll */
  -ms-overflow-style: none;        /* IE y Edge antiguo */
}

.faq-scroll-box::-webkit-scrollbar {
  display: none;                   /* Chrome/Safari: oculta scroll */
}
.faq-scroll-box::-webkit-scrollbar-track {
  background: transparent;
}
.faq-scroll-box::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 4px;
}


.faq-scroll-box::-webkit-scrollbar {
  width: 6px;
}
.faq-scroll-box::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}
/* FAQ SCROLL BOX - scroll vertical sin bordes */
.faq-scroll-box {
  max-height: 300px; /* o el valor que estés usando */
  overflow-y: auto;
  padding-right: 8px; /* espacio para el scroll */
  border: none !important;
  box-shadow: none !important;
  background-color: transparent;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.4) transparent;
}

/* Chrome, Safari y Edge */
.faq-scroll-box::-webkit-scrollbar {
  width: 6px;
}

.faq-scroll-box::-webkit-scrollbar-track {
  background: transparent;
}

.faq-scroll-box::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.3);
  border-radius: 4px;
}


/* ================================================================
   ✨ EFECTOS DE INTERACCIÓN
=================================================================== */
.highlight-title {
  display: inline-block;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.highlight-title:hover {
  transform: scale(1.05);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #0D6EFD;
}

/* ================================================================
   🔚 FOOTER CON COLUMNAS
=================================================================== */
footer {
  background: #222;
  color: #ccc;
  padding: 0.5rem 0.5rem;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 1rem;
  max-width: 75%;
  margin: 0 auto;
}
.footer-col {
  flex: 1 1 220px;
  max-width: 300px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1rem;
  text-align: justify;
  line-height: 1.5;
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.footer-col:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
  transform: scale(1.01);
}
.footer-col i {
  color: white;
  margin-right: 6px;
}

/* ================================================================
   📱 ESTILOS PARA MÓVILES
=================================================================== */
@media (max-width: 768px) {
  section {
    max-width: 100%;
    padding: 0.5rem 0.5rem;
  }

  .register-banner-section {
    height: auto;
    padding: 1.5rem 1rem;
  }

  .register-banner-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }

  .register-text {
    text-align: center;
    font-size: 1rem;
  }

  .register-button {
    display: flex;
    justify-content: center;
  }

  .register-button button {
    width: 100%;
    max-width: 240px;
  }

  .footer-columns {
    flex-direction: column;
    align-items: stretch;
    padding: 0.25rem;
    max-width: 100%;
  }

  .footer-col {
    width: 100%;
    max-width: none;
    padding: 0.9rem;
    font-size: 1rem;
  }

  .swiper-container {
    max-width: 95%;
    border-radius: 10px;
  }
}

/* ================================================================
   📲 ESTILOS PARA TABLETS
=================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  section {
    max-width: 85%;
    padding: 1.8rem;
  }
  .footer-columns {
    max-width: 90%;
    gap: 1.2rem;
  }
  .footer-col {
    flex: 1 1 45%;
    max-width: 100%;
    font-size: 1rem;
  }
  .swiper-container {
    max-width: 90%;
  }
}
/* ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
   📬 FORMULARIO DE CONTACTO - CONTENEDOR Y ELEMENTOS
▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ */

form#contactForm {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.5rem;
  width: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', sans-serif;
}

form#contactForm input,
form#contactForm textarea {
  width: 100%;
  padding: 0.75rem 0.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fafafa;
  transition: border-color 0.3s ease;
  margin-bottom: 1rem;
	margin-left: 0rem;
	margin-right: 0rem;
}

form#contactForm input:focus,
form#contactForm textarea:focus {
  border-color: #0D6EFD;
  outline: none;
}

form#contactForm textarea {
  resize: vertical;
  min-height: 130px;
}

form#contactForm .btn-enviar {
  background-color: #0D6EFD;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

form#contactForm .btn-enviar:hover {
  background-color: #084ec1;
}

/* ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
   🔐 FORMULARIO DE CONTACTO - reCAPTCHA RESPONSIVO
▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ */

.g-recaptcha {
  transform: scale(0.88);
  transform-origin: top left;
  -webkit-transform: scale(0.88);
  -webkit-transform-origin: top left;
  margin-bottom: 1rem;
  max-width: 100%;
  overflow: visible;
}

/* 📱 MÓVILES: Ancho y escala coherente con sección FAQ */
@media (max-width: 768px) {
  section {
    max-width: 95%;
    padding: 0.5rem;
  }

  form#contactForm {
    padding: 1.5rem 0.5rem;
  }

  .g-recaptcha {
    transform: scale(0.85);
    -webkit-transform: scale(0.85);
    transform-origin: top left;
  }
}

/* 💻 TABLETS */
@media (min-width: 769px) and (max-width: 1024px) {
  section {
    max-width: 85%;
    padding: 1.8rem;
  }

  form#contactForm {
    padding: 2rem;
  }
}
/* ================================================================
   🎨 HERO PRINCIPAL + PARALLAX
=================================================================== */
/* ================================================================
   🖥️ HERO DESKTOP (≥1025px)
=================================================================== */
@media (min-width: 1025px) {
  .hero-section {
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: white;
    position: relative;
    z-index: 0;
  }

  .parallax-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }

  .parallax-logo {
    position: absolute;
    top: 2%;
    left: 2%;
    width: 500px;
    z-index: 0;
    opacity: 0.9;
    transform: translateZ(0);
    transition: transform 0.3s ease-out;
    pointer-events: none;
  }

  .effect-3 {
    will-change: transform;
  }

  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    background: rgba(0, 0, 0, 0);
    padding: 4rem;
    border-radius: 1rem;
    text-align: center;
  }

  .hero-btn {
    margin-top: 2rem;
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #fbc500;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .hero-btn:hover {
    background-color: #e0a800;
  }
}
/* ================================================================
   📱 HERO MÓVIL (≤768px)
=================================================================== */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    background-size: cover;
    background-position: top center;
    padding: 3rem 1rem;
    flex-direction: column;
  }

  .parallax-logo {
    width: 100px;
    top: 10%;
    left: 10%;
  }

  .hero-content {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.0);
    max-width: 100%;
    border-radius: 0.8rem;
  }

  .hero-btn {
    margin-top: 1.5rem;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
}
/* ================================================================
   📲 HERO TABLET (769px – 1024px)
=================================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section {
    height: 75vh;
    background-size: cover;
    background-position: center center;
    padding: 2rem;
  }

  .parallax-logo {
    width: 120px;
    top: 6%;
    left: 6%;
  }

  .hero-content {
    padding: 3rem;
    max-width: 90%;
  }

  .hero-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }
}
.faq-scroll-box {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 1rem;
  scroll-behavior: smooth;
  border: 1px solid #ccc; /* Para que veas el contenedor */
}