:root {
  --verde: #1a8a1e;
  --verde-dark: #126116;
  --verde-light: #22a827;
  --amarillo: #f5d800;
  --blanco: #ffffff;
  --gris-claro: #f4f6f3;
  --gris: #666;
  --negro: #111;
  --sombra: 0 4px 32px rgba(0, 0, 0, 0.13);
}

/* =========================================================
   VERSION PC / BASE
   ========================================================= */

/* =========================================================
   01. RESET Y ESTILOS BASE
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', sans-serif;
  color: var(--negro);
  background: #fff;
  overflow-x: hidden;
}

/* =========================================================
   02. HEADER / MENU PC
   ========================================================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(18, 97, 22, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 120px;
  width: auto;
  display: block;
}

#menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

#menu a {
  text-decoration: none;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  position: relative;
}

#menu a:hover {
  color: var(--amarillo);
}

#menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--amarillo);
  transition: 0.3s;
}

#menu a:hover::after {
  width: 100%;
}

.social-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-text {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.15);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  display: block;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

/* =========================================================
   03. HERO
   ========================================================= */

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 32px 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgb(47, 132, 13), rgba(12, 68, 10, 0.85)),
    url("f1.jpg") center/cover no-repeat;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 216, 0, 0.15);
  border: 1px solid rgba(245, 216, 0, 0.4);
  color: var(--amarillo);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: "*";
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  color: #fff;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 em {
  color: var(--amarillo);
  font-style: normal;
  display: block;
}

.hero-sub {
  margin-top: 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  max-width: 440px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-ctas {
  margin-top: 36px;
  display: flex;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  background: var(--amarillo);
  color: var(--negro);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 16px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 32px rgba(245, 216, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 50px rgba(245, 216, 0, 0.6);
}

.hero-stats {
  display: none;
}

/* =========================================================
   04. CONTADORES
   ========================================================= */

.counters {
  background: var(--amarillo);
  padding: 48px 32px;
}

.counters-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.counter-item strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--verde-dark);
  display: block;
  line-height: 1;
}

.counter-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* =========================================================
   05. SECCIONES / TITULOS GENERALES
   ========================================================= */

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--verde);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  color: var(--negro);
  margin-bottom: 12px;
}

.section-title span {
  color: var(--verde);
}

.section-sub {
  font-size: 16px;
  color: var(--gris);
  max-width: 560px;
  line-height: 1.6;
}

/* =========================================================
   06. REQUISITOS
   ========================================================= */

.requisitos {
  background: var(--gris-claro);
  padding: 72px 32px;
}

.req-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.req-card {
  background: var(--verde-dark);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.req-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra);
}

.req-num {
  background: var(--amarillo);
  color: var(--negro);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.req-info h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin-bottom: 2px;
}

.req-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

/* =========================================================
   07. PROCESO
   ========================================================= */

.proceso {
  background: #fff;
  padding: 100px 32px;
  text-align: center;
}

.proceso-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proceso-box {
  margin-top: 60px;
  background: #0f5f1f;
  padding: 30px;
  border-radius: 20px;
  display: inline-block;
}

.proceso-box img {
  display: block;
  width: 100%;
  max-width: 1000px;
  border-radius: 12px;
}

.proceso-img {
  position: relative;
  overflow: hidden;
}

.proceso-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 95, 31, 0.5);
  border-radius: 20px;
}

.proceso-img img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

/* =========================================================
   08. CONFIANZA / BENEFICIOS / TESTIMONIOS
   ========================================================= */

.confianza {
  background: linear-gradient(135deg, var(--verde-dark) 0%, #0d5e10 100%);
  padding: 80px 32px;
}

.confianza-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.confianza .section-title,
.confianza .section-label {
  color: #fff;
}

.confianza .section-title span {
  color: var(--amarillo);
}

.two-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.benefits-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 24px;
  transition: background 0.2s, transform 0.2s;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.benefit-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.benefit-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--amarillo);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.confianza-image {
  position: relative;
}

.confianza-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.confianza-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(0, 128, 0, 0.2), rgba(255, 204, 0, 0.2));
}

.testimonios {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 24px;
}

.stars {
  color: var(--amarillo);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  background: var(--amarillo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--negro);
}

.testi-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: #fff;
}

.testi-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================================
   09. CTA FINAL / CALCULADORA
   ========================================================= */

.cta-final {
  background: #ffd501;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.04) 20px,
    rgba(0, 0, 0, 0.04) 40px
  );
  pointer-events: none;
}

.cta-final h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  color: var(--negro);
  line-height: 1;
  position: relative;
  z-index: 2;
}

.cta-final p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.7);
  margin: 20px 0 40px;
  position: relative;
  z-index: 2;
}

/* FORMULARIO */
.revision-box {
  max-width: 400px;
  margin: 40px auto 0;
  padding: 30px;
  background: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.revision-box input,
.revision-box select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  margin: 0;
  font-family: 'Barlow', sans-serif;
}

.revision-box button {
  width: 100%;
  padding: 14px;
  background: #ffd500;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.revision-box button:hover {
  transform: scale(1.05);
}

.revision-box .form-full {
  grid-column: 1 / -1;
}

#resultado {
  margin-top: 20px;
  font-weight: bold;
  color: #ffdd00;
}

#resultado small {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-weight: 500;
}

/* BOTÓN CTA */
.btn-cta-big {
  background: var(--verde-dark);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  padding: 20px 56px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.btn-cta-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .revision-box {
    grid-template-columns: 1fr;
  }

  .revision-box .form-full {
    grid-column: auto;
  }
}

/* =========================================================
   10. SEDE / MAPA
   ========================================================= */

.sede {
  padding: 80px 32px;
  background: var(--gris-claro);
}

.sede-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s;
}

.info-row:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--verde);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-row h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--verde-dark);
  margin-bottom: 3px;
}

.info-row p {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.5;
}

.info-row a {
  color: var(--verde);
  text-decoration: none;
  font-weight: 600;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sombra);
  height: 380px;
  position: relative;
  background: #d0e8d0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
  gap: 12px;
}

.map-pin {
  font-size: 48px;
  animation: bounce 1.5s infinite;
}

.map-placeholder p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--verde-dark);
}

.btn-maps {
  background: var(--verde);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-maps:hover {
  background: var(--verde-light);
}

/* =========================================================
   11. FORMULARIOS / MODAL / RESERVA
   ========================================================= */

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--verde-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--amarillo);
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.time-btn {
  padding: 10px 8px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--negro);
  transition: all 0.15s;
  background: #fff;
}

.time-btn:hover,
.time-btn.selected {
  border-color: var(--verde);
  background: var(--verde);
  color: #fff;
}

.date-input {
  width: 100%;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 20px;
}

.date-input:focus {
  outline: none;
  border-color: var(--verde);
}

.btn-next,
.btn-prev {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-next {
  background: var(--verde);
  color: #fff;
  flex: 1;
}

.btn-next:hover {
  background: var(--verde-light);
  transform: translateY(-1px);
}

.btn-prev {
  background: #eee;
  color: var(--negro);
}

.btn-prev:hover {
  background: #ddd;
}

.modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.pay-icon {
  background: var(--gris-claro);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gris);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}

.summary-row strong {
  color: var(--verde-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  font-size: 18px;
  font-weight: 700;
}

.total-row strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--verde-dark);
}

/* =========================================================
   12. WHATSAPP FLOAT
   ========================================================= */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse-wa 2s infinite;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
  animation: none;
}

.wa-float img {
  width: 60px;
  height: 60px;
  display: block;
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--negro);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
}

/* =========================================================
   13. FOOTER
   ========================================================= */

footer {
  background: #0a3d0b;
  padding: 48px 32px 28px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-text {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--amarillo);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--amarillo);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

/* =========================================================
   14. ANIMACIONES
   ========================================================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8);
  }
}

/* =========================================================
   VERSION RESPONSIVE
   ========================================================= */

/* =========================================================
   R01. TABLET Y MOVIL - HEADER / MENU HAMBURGUESA
   ========================================================= */

@media (max-width: 900px) {
  header {
    height: 85px;
    padding: 0 20px;
  }

  .logo-img {
    height: 85px;
  }

  .social-wrap {
    display: flex;
    gap: 12px;
  }

  .social-text {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 10000;
  }

  #menu {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    width: 100%;
    background: #126116;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 9999;
  }

  #menu.active {
    max-height: 500px;
  }

  #menu a {
    width: 100%;
    padding: 18px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 18px;
  }

  #menu a::after {
    display: none;
  }
}

/* =========================================================
   R02. TABLET Y MOVIL - SECCIONES GENERALES
   ========================================================= */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .sede-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .counters-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-step::after {
    display: none;
  }

  .proceso-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   R03. TABLET Y MOVIL - CONFIANZA
   ========================================================= */

@media (max-width: 900px) {
  .two-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .confianza-content {
    order: 2;
  }

  .confianza-image {
    order: 1;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   R04. MOVIL - AJUSTES GENERALES
   ========================================================= */

@media (max-width: 600px) {
  header {
    padding: 0 20px;
  }

  .hero {
    padding: 88px 20px 48px;
  }

  .hero-stats {
    gap: 20px;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .counters-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .time-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================
   R05. MOVIL - CONFIANZA
   ========================================================= */

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .confianza {
    padding: 60px 20px;
  }

  .confianza-image img {
    max-height: 300px;
  }
}

/* =========================================================
   R06. MOVIL - WHATSAPP
   ========================================================= */

@media (max-width: 768px) {
  .wa-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 15px;
  }

  .wa-float img {
    width: 48px;
    height: 48px;
  }

  .wa-tooltip {
    display: none;
  }
}
