/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #cfd546;
  --orange-dark: #a8af2e;
  --orange-light: #ecf09b;
  --red: #dc2626;
  --dark: #0f172a;
  --dark2: #1e293b;
  --gray: #64748b;
  --gray-light: #f1f5f9;
  --white: #ffffff;
  --green: #16a34a;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 48px rgba(0,0,0,.15);
  --font-title: 'Cooper Black', 'Cooper Std', Georgia, serif;
  --font-subtitle: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== TIPOGRAFÍA GLOBAL ===== */
h1, h2,
.section-title,
.hero h1,
.contact-left h2 {
  font-family: var(--font-title);
  font-weight: 400;
  letter-spacing: .005em;
}
h3, h4,
.pricing-badge,
.gift-banner-tag,
.step-content h3,
.tier-info h4,
.faq-q,
.footer-links h4,
.footer-contact h4,
.form-success h3,
.modal h3 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  letter-spacing: 0;
}

a { text-decoration: none; color: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-title { font-family: var(--font-title); font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 400; text-align: center; margin-bottom: 12px; line-height: 1.15; letter-spacing: .005em; }
.section-sub { text-align: center; color: var(--gray); font-size: 1.05rem; margin-bottom: 48px; }
.highlight { color: var(--orange); }
.gradient-text { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(207,213,70,.4);
  text-align: center;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(207,213,70,.5); }
.btn-primary.full-width { width: 100%; display: block; }

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-dark));
  background-size: 200%;
  animation: barScroll 3s linear infinite;
  color: var(--dark);
  text-align: center;
  padding: 10px;
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@keyframes barScroll { 0%{background-position:0%} 100%{background-position:200%} }

.pulse-dot {
  width: 10px; height: 10px;
  background: var(--dark);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
  display: inline-block;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity:1; }
  50% { transform: scale(1.4); opacity:.7; }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--orange);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.15); }
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 96px;
  transition: height .3s ease;
}
.navbar.scrolled .nav-inner { height: 64px; }
.logo { font-size: 1.4rem; font-weight: 900; }
.logo-img {
  height: 80px; width: auto; display: block; object-fit: contain;
  transition: height .3s ease;
}
.navbar.scrolled .logo-img { height: 48px; }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--dark);
  font-size: 1rem;
  letter-spacing: .01em;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--dark);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-subtitle);
  font-weight: 700;
  background: var(--dark);
  color: white;
  padding: 11px 24px;
  border-radius: 50px;
  font-size: .92rem;
  letter-spacing: .01em;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  animation: ctaPulse 2.4s ease-in-out infinite;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.nav-cta:hover {
  background: #000;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
  animation-play-state: paused;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
  50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,.28); }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.hero-bg-gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.badge-top {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  margin-bottom: 28px;
  animation: fadeDown .5s ease;
}
@keyframes fadeDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:none} }

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: .005em;
  margin-bottom: 22px;
  color: white;
  animation: fadeUp .6s ease .1s both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:none} }

.hero-sub {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 44px;
  animation: fadeUp .6s ease .2s both;
}

/* HERO FORM */
.hero-form { animation: fadeUp .6s ease .3s both; }
.form-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  background: white;
  border: 1.5px solid #e2e8f0;
  border-radius: 60px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  margin-bottom: 16px;
  align-items: center;
}
.input-select, .input-text {
  padding: 10px 4px;
  border: none;
  font-size: .95rem;
  background: transparent;
  font-family: inherit;
  outline: none;
  color: var(--dark);
  flex: 1 1 140px;
  min-width: 0;
}
.input-select { border-right: 1px solid #e2e8f0; padding-right: 16px; cursor: pointer; }
.btn-hero {
  background: var(--dark);
  color: white; border: none; cursor: pointer;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: .95rem; font-family: inherit;
  transition: background .2s;
  white-space: nowrap; flex-shrink: 0;
}
.btn-hero:hover { background: var(--orange); }
.form-note { font-size: .8rem; color: #94a3b8; }

/* HERO SECONDARY CTAs */
.hero-ctas {
  margin-top: 28px;
  animation: fadeUp .6s ease .45s both;
}
.hero-ctas-label {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.hero-ctas-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: all .25s ease;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: white;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.cta-secondary:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
}
.cta-call:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(207,213,70,.4);
}
.cta-wa:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* HERO STATS */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; margin-top: 64px; flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.15);
  animation: fadeUp .6s ease .4s both;
}
.stat { text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: white; }
.stat-suffix { font-size: 1.4rem; font-weight: 800; color: var(--orange); }
.stat-label { display: block; font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); }

/* ===== PROBLEMS ===== */
.problems {
  padding: 96px 24px;
  background-image: linear-gradient(rgba(241,245,249,.15), rgba(241,245,249,.18)), url('FONDO%203.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-bottom: 32px;
}
.problem-card:nth-child(6) { grid-column-start: 2; }
.problem-card {
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 24px 20px; text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer; transition: all .25s;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  color: white;
}
.problem-card:hover {
  border-color: rgba(207,213,70,.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(207,213,70,.25), 0 8px 24px rgba(0,0,0,.3);
  background: rgba(15,23,42,.7);
}
.problem-card.selected {
  border-color: var(--orange);
  background: rgba(15,23,42,.8);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(207,213,70,.35), 0 8px 24px rgba(0,0,0,.3);
}
.problem-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; margin-top: 6px; color: white; }
.problem-card p { font-size: .82rem; color: rgba(226,232,240,.8); }

.problem-cta {
  background: linear-gradient(135deg, #fbfce8, white);
  border: 2px solid var(--orange-light);
  border-radius: var(--radius); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  animation: fadeUp .5s ease;
}
.problem-cta p { font-size: 1.05rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 96px 24px;
  background-image: linear-gradient(rgba(255,255,255,.15), rgba(255,255,255,.18)), url('FONDO%202.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.how-card {
  max-width: 620px;
  margin: 0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  color: white;
}
.how-card .section-title { text-align: left; color: white; margin-bottom: 36px; }
.how-card .section-title .highlight { color: var(--orange); }
.how-card .step-content h3 { color: white; }
.how-card .step-content p { color: rgba(226,232,240,.85); }
.how-card .step-time { background: rgba(207,213,70,.18); color: var(--orange); }
.steps { display: flex; flex-direction: column; gap: 0; max-width: 100%; margin: 0; }
.step { display: flex; gap: 20px; align-items: flex-start; position: relative; }
.step-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(207,213,70,.35);
}
.step-connector {
  position: absolute; left: 23px; top: 48px;
  width: 2px; height: 60px;
  background: linear-gradient(to bottom, var(--orange-light), transparent);
}
.step-connector.last { display: none; }
.step-content { padding-bottom: 48px; }
.step-content h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.step-content p { color: var(--gray); font-size: .95rem; line-height: 1.6; margin-bottom: 8px; }
.step-time { font-size: .82rem; font-weight: 600; color: var(--orange); background: #fbfce8; padding: 3px 12px; border-radius: 50px; }

/* ===== PRICING (LÍNEAS DE HORNOS) ===== */
.pricing {
  position: relative;
  padding: 96px 24px;
  color: white;
  background-image: linear-gradient(rgba(15,23,42,.45), rgba(15,23,42,.55)), url('FONDO%204.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* ===== MICROONDAS DECORATIVOS ===== */
.micro-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .9s ease, transform 1.1s cubic-bezier(.34, 1.3, .64, 1);
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.5));
}
.micro-deco img {
  display: block;
  width: 100%;
  height: auto;
}
.pricing.in-view .micro-deco img {
  animation: microFloat 5s ease-in-out infinite;
}

/* Posicionamiento y ángulos de reposo — 5 izquierda, 5 derecha, variados */
.micro-1  { top: 2%;   left: 1.5%; width: 130px; transition-delay: .05s; transform: translateY(-300px) rotate(-20deg); }
.micro-2  { top: 22%;  left: 4%;   width: 100px; transition-delay: .15s; transform: translateY(-300px) rotate(8deg); }
.micro-3  { top: 42%;  left: 1%;   width: 120px; transition-delay: .25s; transform: translateY(-300px) rotate(-18deg); }
.micro-7  { top: 62%;  left: 4.5%; width: 105px; transition-delay: .35s; transform: translateY(-300px) rotate(15deg); }
.micro-8  { top: 82%;  left: 1%;   width: 125px; transition-delay: .45s; transform: translateY(-300px) rotate(-10deg); }

.micro-4  { top: 4%;   right: 1.5%; width: 115px; transition-delay: .10s; transform: translateY(-300px) rotate(2deg); }
.micro-5  { top: 23%;  right: 4%;   width: 130px; transition-delay: .20s; transform: translateY(-300px) rotate(22deg); }
.micro-6  { top: 44%;  right: 1%;   width: 110px; transition-delay: .30s; transform: translateY(-300px) rotate(-4deg); }
.micro-9  { top: 64%;  right: 4.5%; width: 125px; transition-delay: .40s; transform: translateY(-300px) rotate(18deg); }
.micro-10 { top: 84%;  right: 1%;   width: 105px; transition-delay: .50s; transform: translateY(-300px) rotate(-22deg); }

/* Ángulos finales en reposo (cada uno mantiene su inclinación) */
.pricing.in-view .micro-1  { opacity: 1; transform: translateY(0) rotate(12deg); }
.pricing.in-view .micro-2  { opacity: 1; transform: translateY(0) rotate(-8deg); }
.pricing.in-view .micro-3  { opacity: 1; transform: translateY(0) rotate(7deg); }
.pricing.in-view .micro-7  { opacity: 1; transform: translateY(0) rotate(-11deg); }
.pricing.in-view .micro-8  { opacity: 1; transform: translateY(0) rotate(5deg); }
.pricing.in-view .micro-4  { opacity: 1; transform: translateY(0) rotate(-14deg); }
.pricing.in-view .micro-5  { opacity: 1; transform: translateY(0) rotate(10deg); }
.pricing.in-view .micro-6  { opacity: 1; transform: translateY(0) rotate(-6deg); }
.pricing.in-view .micro-9  { opacity: 1; transform: translateY(0) rotate(8deg); }
.pricing.in-view .micro-10 { opacity: 1; transform: translateY(0) rotate(-12deg); }

/* Delays escalonados para la flotabilidad (que no flote todo igual) */
.pricing.in-view .micro-1  img { animation-delay: 0s; }
.pricing.in-view .micro-2  img { animation-delay: .4s; }
.pricing.in-view .micro-3  img { animation-delay: .8s; }
.pricing.in-view .micro-7  img { animation-delay: 1.2s; }
.pricing.in-view .micro-8  img { animation-delay: 1.6s; }
.pricing.in-view .micro-4  img { animation-delay: .2s; }
.pricing.in-view .micro-5  img { animation-delay: .6s; }
.pricing.in-view .micro-6  img { animation-delay: 1.0s; }
.pricing.in-view .micro-9  img { animation-delay: 1.4s; }
.pricing.in-view .micro-10 img { animation-delay: 1.8s; }

@keyframes microFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-10px) rotate(-2deg); }
  50%      { transform: translateY(-18px) rotate(0deg); }
  75%      { transform: translateY(-10px) rotate(2deg); }
}

/* Container por encima de los microondas para que las tarjetas no queden tapadas */
.pricing .container { position: relative; z-index: 2; }
.pricing .micro-deco { z-index: 1; }

/* Tablet (≤1080px): reducción + reposicionamiento */
@media (max-width: 1080px) {
  .micro-1  { top: 2%;  left: 0;  width: 88px; }
  .micro-2  { top: 22%; left: 1%; width: 70px; opacity: .45 !important; }
  .micro-3  { top: 42%; left: 0;  width: 82px; opacity: .35 !important; }
  .micro-7  { top: 62%; left: 1%; width: 72px; opacity: .45 !important; }
  .micro-8  { top: 84%; left: 0;  width: 88px; }
  .micro-4  { top: 3%;  right: 0;  width: 80px; }
  .micro-5  { top: 22%; right: 1%; width: 88px; opacity: .45 !important; }
  .micro-6  { top: 42%; right: 0;  width: 72px; opacity: .35 !important; }
  .micro-9  { top: 62%; right: 1%; width: 86px; opacity: .45 !important; }
  .micro-10 { top: 84%; right: 0;  width: 78px; }
}

/* Móvil (≤600px): los 10 visibles, pequeños y pegados al borde */
@media (max-width: 600px) {
  .micro-1  { top: 1%;  left: -8px; width: 56px; opacity: 1 !important; }
  .micro-2  { top: 19%; left: -6px; width: 48px; opacity: .55 !important; }
  .micro-3  { top: 37%; left: -8px; width: 54px; opacity: .55 !important; }
  .micro-7  { top: 55%; left: -6px; width: 50px; opacity: .55 !important; }
  .micro-8  { top: 88%; left: -8px; width: 56px; opacity: 1 !important; }
  .micro-4  { top: 2%;  right: -8px; width: 52px; opacity: 1 !important; }
  .micro-5  { top: 20%; right: -6px; width: 56px; opacity: .55 !important; }
  .micro-6  { top: 38%; right: -8px; width: 50px; opacity: .55 !important; }
  .micro-9  { top: 56%; right: -6px; width: 54px; opacity: .55 !important; }
  .micro-10 { top: 89%; right: -8px; width: 54px; opacity: 1 !important; }
}
.pricing .section-title { color: white; }
.pricing .section-sub { color: #94a3b8; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* OBSEQUIO BANNER - aplica a ambas líneas */
.pricing-gift-banner {
  max-width: 720px;
  margin: 0 auto 36px;
  background: linear-gradient(135deg, rgba(207,213,70,.22), rgba(168,175,46,.14));
  border: 1.5px dashed rgba(207,213,70,.55);
  border-radius: 18px;
  padding: 22px 28px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(207,213,70,.15);
}
.gift-banner-tag {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.pricing-gift-banner p {
  color: #ecf09b;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.pricing-gift-banner p strong {
  color: white;
  font-weight: 800;
}

.pricing-card {
  position: relative;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  background: rgba(15,23,42,.7);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.pricing-card.industrial {
  border-color: rgba(207,213,70,.35);
  background: rgba(15,23,42,.6);
}
.pricing-card.industrial:hover {
  border-color: rgba(207,213,70,.6);
  background: rgba(15,23,42,.75);
}

.pricing-header { margin-bottom: 28px; }
.pricing-badge {
  display: inline-block;
  background: rgba(148,163,184,.14);
  color: #cbd5e1;
  font-size: .78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em;
}
.industrial-badge { background: rgba(207,213,70,.18); color: var(--orange); }
.pricing-header h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; color: white; }
.pricing-header p { color: #94a3b8; font-size: .95rem; line-height: 1.55; }

.pricing-tiers { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; flex: 1; }
.pricing-tiers.single { justify-content: center; }

.tier {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  transition: all .2s ease;
}
.tier:hover {
  background: rgba(207,213,70,.08);
  border-color: rgba(207,213,70,.3);
  transform: translateX(4px);
}
.tier.featured {
  background: rgba(207,213,70,.12);
  border-color: rgba(207,213,70,.4);
  padding: 22px 22px;
}

.tier-info { display: flex; align-items: center; gap: 14px; }
.tier-info h4 { font-size: 1.05rem; font-weight: 700; color: white; margin-bottom: 2px; }
.tier-desc { font-size: .82rem; color: #94a3b8; }
.tier-price {
  font-size: 1.3rem; font-weight: 800;
  color: var(--orange); white-space: nowrap;
}
.tier.featured .tier-price { font-size: 1.6rem; }

/* Tier de cotización (sin precio numérico) */
.quote-price {
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 1.05rem !important;
  white-space: normal !important;
  text-align: right;
  line-height: 1.25;
  letter-spacing: .01em;
  color: var(--orange);
  padding: 6px 12px;
  border: 1.5px dashed rgba(207,213,70,.5);
  border-radius: 50px;
}

.pricing-extra {
  background: rgba(255,255,255,.04);
  border-left: 3px solid var(--orange);
  padding: 14px 16px;
  border-radius: 0 10px 10px 0;
  margin-bottom: 22px;
  color: #cbd5e1;
}
.pricing-extra strong { color: white; font-size: .95rem; display: block; }
.pricing-extra small { display: block; color: #94a3b8; font-size: .78rem; margin-top: 3px; }

.pricing-note {
  text-align: center; color: #64748b;
  font-size: .85rem; margin-top: 32px;
}

/* ===== BRANDS ===== */
.brands { padding: 48px 0; overflow: hidden; }
.brands-label { text-align: center; font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); margin-bottom: 20px; }
.brands-track { overflow: hidden; width: 100%; }
.brands-slide {
  display: flex; gap: 64px; align-items: center;
  animation: brandScroll 30s linear infinite;
  width: max-content;
}
.brands-slide img {
  height: 48px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%) opacity(.6);
  transition: filter .3s ease, transform .3s ease;
  flex-shrink: 0;
}
.brands-slide img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}
@keyframes brandScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 96px 24px;
  color: white;
  background-image: linear-gradient(rgba(15,23,42,.55), rgba(15,23,42,.65)), url('FONDO%206.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.testimonials .section-title { color: white; }
.testimonials .section-sub { color: rgba(255,255,255,.75); margin-bottom: 40px; }
.testimonials-slider { position: relative; overflow: hidden; min-height: 260px; }
.testimonial {
  display: none;
  position: relative;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 40px 48px; max-width: 720px; margin: 0 auto;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  animation: fadeUp .4s ease;
}
.testimonial.active { display: block; }
.t-google-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-subtitle);
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  margin-bottom: 18px;
}
.t-google-badge svg { flex-shrink: 0; }
.t-stars { font-size: 1.3rem; margin-bottom: 16px; color: #fbbc05; }
.testimonial p { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.95); margin-bottom: 24px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 16px; }
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--dark); font-family: var(--font-subtitle); font-weight: 700; font-size: .92rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(207,213,70,.25);
}
.t-author strong { display: block; font-size: .98rem; color: white; }
.t-author span { font-size: .82rem; color: rgba(255,255,255,.65); }
.t-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: background .2s, transform .2s; }
.dot.active { background: var(--orange); transform: scale(1.3); }

.t-cta-wrap { text-align: center; margin-top: 32px; }
.t-google-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  color: var(--dark);
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.t-google-cta::before {
  content: '';
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%234285F4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/><path fill='%2334A853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.99.66-2.25 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/><path fill='%23FBBC05' d='M5.84 14.1c-.22-.66-.35-1.36-.35-2.1s.13-1.44.35-2.1V7.07H2.18A10.997 10.997 0 0 0 1 12c0 1.77.42 3.45 1.18 4.93l3.66-2.83z'/><path fill='%23EA4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.83C6.71 7.31 9.14 5.38 12 5.38z'/></svg>") no-repeat center / contain;
  flex-shrink: 0;
}
.t-google-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

/* ===== FAQ ===== */
.faq {
  padding: 96px 24px;
  background-image: linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.22)), url('FONDO%207.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.faq-inner { max-width: 760px; }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: border-color .2s, background .2s;
}
.faq-item:hover { border-color: rgba(207,213,70,.5); background: rgba(15,23,42,.7); }
.faq-item.open { border-color: var(--orange); background: rgba(15,23,42,.75); }
.faq-q {
  padding: 20px 24px; font-weight: 700; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center;
  user-select: none;
  color: white;
}
.faq-arrow { transition: transform .3s; color: var(--orange); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 24px; color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 280px; padding: 0 24px 20px; }

/* ===== CONTACT ===== */
.contact-section {
  padding: 96px 24px;
  color: white;
  background-image: linear-gradient(rgba(15,23,42,.55), rgba(15,23,42,.65)), url('FONDO%205.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-left,
.contact-right {
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  color: white;
}
.contact-left h2 { font-family: var(--font-title); font-size: clamp(2rem, 3.8vw, 2.8rem); font-weight: 400; line-height: 1.15; letter-spacing: .005em; margin-bottom: 16px; color: white; }
.contact-left h2 .gradient-text { color: var(--orange); -webkit-text-fill-color: var(--orange); background: none; }
.contact-left > p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; }
.contact-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.cb { font-size: .95rem; color: white; }
.contact-phones { display: flex; gap: 16px; flex-wrap: wrap; }
.phone-link, .whatsapp-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-weight: 600; font-size: .95rem;
  transition: all .2s;
}
.phone-link { background: rgba(255,255,255,.1); color: white; border: 1.5px solid rgba(255,255,255,.2); }
.phone-link:hover { background: rgba(255,255,255,.18); }
.whatsapp-link { background: #25d366; color: white; }
.whatsapp-link:hover { background: #1fba58; transform: translateY(-2px); }

.contact-address {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-address strong {
  display: block;
  font-family: var(--font-subtitle);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 8px;
}
.contact-address a {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(207,213,70,.4);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.contact-address a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.contact-map {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-map:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.4);
}
.contact-map iframe {
  display: block;
  width: 100%;
  filter: grayscale(.3) contrast(1.05);
}

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.field {
  width: 100%; padding: 14px 18px;
  border-radius: 12px; border: 1.5px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07); color: white;
  font-size: .95rem; font-family: inherit; outline: none;
  transition: border-color .2s;
}
.field:focus { border-color: var(--orange); background: rgba(255,255,255,.1); }
.field option { background: var(--dark2); color: white; }
.field::placeholder { color: #64748b; }
.textarea { resize: vertical; border-radius: 12px; }
.form-note { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 8px; }
.form-note.center { text-align: center; color: rgba(255,255,255,.7); }

.form-success {
  background: rgba(22,163,74,.1); border: 1.5px solid rgba(22,163,74,.4);
  border-radius: var(--radius); padding: 40px;
  text-align: center;
}
.form-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; color: white; }
.form-success p { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 8px; }
.form-success .success-sub { font-size: .9rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #94a3b8; padding: 64px 24px 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { color: white; margin-bottom: 12px; }
.footer-brand .logo-img { height: 56px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { color: white; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.footer-links a { font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact h4 { color: white; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.footer-contact a, .footer-contact p { font-size: .9rem; }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom { text-align: center; padding: 20px; font-size: .82rem; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  background: rgba(15,23,42,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px 22px;
  z-index: 300;
  color: white;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .5s ease .2s, opacity .5s ease .2s;
  max-width: 720px;
  margin: 0 auto;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cookie-content {
  display: flex; gap: 18px; align-items: center;
  flex-wrap: wrap; justify-content: space-between;
}
.cookie-text { flex: 1 1 320px; min-width: 0; }
.cookie-text strong {
  display: block;
  font-family: var(--font-subtitle); font-weight: 700;
  font-size: .95rem; color: var(--orange);
  margin-bottom: 4px;
}
.cookie-text p { font-size: .82rem; line-height: 1.5; color: rgba(255,255,255,.85); margin: 0; }
.cookie-text a { color: var(--orange); text-decoration: underline; text-decoration-color: rgba(207,213,70,.4); }
.cookie-text a:hover { text-decoration-color: var(--orange); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font-subtitle); font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .85rem;
  border: 1.5px solid rgba(255,255,255,.2);
  background: transparent;
  color: white;
  cursor: pointer;
  transition: all .2s;
}
.cookie-reject:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.cookie-accept {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--dark);
  box-shadow: 0 4px 12px rgba(207,213,70,.3);
}
.cookie-accept:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }

@media (max-width: 560px) {
  .cookie-banner { padding: 14px 16px; left: 10px; right: 10px; bottom: 10px; border-radius: 14px; }
  .cookie-content { gap: 12px; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; padding: 10px 16px; }
}

/* ===== CONSENT CHECKBOX ===== */
.field-consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 4px 0 6px;
  font-size: .82rem;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  cursor: pointer;
}
.field-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px; height: 16px;
  accent-color: var(--orange);
  flex-shrink: 0;
  cursor: pointer;
}
.field-consent a { color: var(--orange); text-decoration: underline; }

/* ===== LEGAL PAGE ===== */
.legal-section { padding: 64px 24px 80px; background: var(--gray-light); min-height: 70vh; }
.legal-container { max-width: 820px; }
.legal-back {
  display: inline-block;
  font-family: var(--font-subtitle); font-weight: 600;
  color: var(--gray); font-size: .9rem;
  margin-bottom: 24px;
  transition: color .2s;
}
.legal-back:hover { color: var(--orange-dark); }
.legal-section h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: .005em;
}
.legal-updated { color: var(--gray); font-size: .9rem; margin-bottom: 32px; }
.legal-intro {
  background: white;
  border-left: 4px solid var(--orange);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  color: var(--dark); font-size: 1rem; line-height: 1.65;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.legal-section h2 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange-light);
}
.legal-section h3 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-top: 22px;
  margin-bottom: 10px;
}
.legal-section p { color: #374151; font-size: .98rem; line-height: 1.75; margin-bottom: 14px; }
.legal-list {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 18px;
  color: #374151;
}
.legal-list li { font-size: .96rem; line-height: 1.7; margin-bottom: 8px; }
.legal-list a { color: var(--orange-dark); text-decoration: underline; }
.legal-list a:hover { color: var(--orange); }
.legal-footer-note {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
  color: var(--gray); font-size: .88rem; text-align: center;
}
.legal-footer-note p { margin-bottom: 6px; color: var(--gray); }

/* ===== WHATSAPP FLOAT (HORNI WHAT) ===== */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px;
  width: 130px; height: 130px;
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.4));
  transition: transform .3s ease, filter .3s ease;
}
.horni-what {
  width: 100%; height: 100%;
  object-fit: contain;
  transform-origin: 70% 90%;
  animation: horniWiggle 3.2s ease-in-out infinite;
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,.45) 0%, rgba(37,211,102,0) 70%);
  animation: horniPulse 2.4s ease-out infinite;
  z-index: -1;
}
.whatsapp-float:hover {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 12px 24px rgba(37,211,102,.55));
}
.whatsapp-float:hover .horni-what {
  animation-play-state: paused;
}
.wa-tooltip {
  position: absolute; right: 100%; top: 50%;
  transform: translateY(-50%);
  margin-right: 6px;
  background: var(--dark); color: white;
  padding: 8px 16px; border-radius: 50px;
  font-family: var(--font-subtitle); font-weight: 700;
  font-size: .82rem; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.3);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
@keyframes horniWiggle {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  10%      { transform: rotate(-6deg) translateY(-3px); }
  20%      { transform: rotate(6deg) translateY(-3px); }
  30%      { transform: rotate(-6deg) translateY(-3px); }
  40%      { transform: rotate(6deg) translateY(-3px); }
  50%      { transform: rotate(0deg) translateY(0); }
  60%, 90% { transform: rotate(0deg) translateY(0); }
}
@keyframes horniPulse {
  0%   { transform: scale(.9); opacity: .7; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
  z-index: 300; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: white; border-radius: 24px;
  padding: 48px 40px; max-width: 460px; width: 90%;
  text-align: center; position: relative;
  transform: scale(.9); transition: transform .3s;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: var(--gray); transition: color .2s;
}
.modal-close:hover { color: var(--red); }
.modal h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; margin-top: 8px; }
.modal p { color: var(--gray); font-size: .95rem; margin-bottom: 24px; }
.modal-detail { background: #f1f5f9; border-radius: 12px; padding: 14px; margin-bottom: 24px; font-size: .9rem; color: var(--gray); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; padding: 4px; border-radius: 8px;
  transition: background .2s;
}
.hamburger:hover { background: var(--gray-light); }
.hamburger span {
  display: block; height: 2px; width: 24px;
  background: var(--dark); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 20px 20px;
  background: var(--orange);
  border-top: 1px solid rgba(0,0,0,.08);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-title);
  padding: 13px 16px; border-radius: 10px;
  font-size: 1.05rem; font-weight: 400; color: var(--dark);
  transition: background .15s;
}
.mobile-menu a:hover { background: rgba(0,0,0,.08); }
.mobile-menu-cta {
  margin-top: 8px;
  background: var(--dark) !important;
  color: white !important;
  text-align: center;
  font-family: var(--font-subtitle) !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
}

/* ===== RESPONSIVE – TABLET (≤900px) ===== */
@media (max-width: 900px) {
  /* Navbar móvil: logo + CTA arriba, nav-links scrolleables abajo */
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }

  .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 16px;
    row-gap: 6px;
  }
  .navbar.scrolled .nav-inner { height: auto; }

  .nav-links {
    order: 3;
    display: flex;
    width: 100%;
    overflow-x: auto;
    gap: 22px;
    padding: 6px 2px 8px;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: 1px solid rgba(0,0,0,.08);
    padding-top: 8px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    font-size: .9rem;
    white-space: nowrap;
    flex-shrink: 0;
    padding-bottom: 2px;
  }
  .nav-cta {
    display: inline-block;
    padding: 9px 16px;
    font-size: .82rem;
    animation: none;
  }

  .hero { padding: 80px 20px 72px; }
  .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }

  .problems { padding: 72px 20px; }
  .problems-grid { grid-template-columns: repeat(4, 1fr); }
  .problem-card:nth-child(6) { grid-column-start: auto; }
  .how-it-works { padding: 72px 20px; }
  .how-card { padding: 40px 32px; max-width: 100%; }
  .pricing { padding: 72px 20px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing-card { padding: 32px 28px; }
  .brands { padding: 40px 0; }
  .brands-slide { gap: 44px; }
  .brands-slide img { height: 36px; max-width: 100px; }
  .testimonials { padding: 72px 20px; }
  .faq { padding: 72px 20px; }
  .contact-section { padding: 72px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-left, .contact-right { padding: 36px 28px; }
  .footer { padding: 56px 20px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ===== RESPONSIVE – MOBILE (≤600px) ===== */
@media (max-width: 600px) {
  /* Urgency bar */
  .urgency-bar { font-size: .78rem; padding: 8px 12px; }

  /* Navbar móvil */
  .nav-inner { height: auto; padding: 8px 12px; }
  .navbar.scrolled .nav-inner { height: auto; }
  .logo-img { height: 48px; }
  .navbar.scrolled .logo-img { height: 36px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .82rem; }
  .nav-cta { padding: 8px 14px; font-size: .78rem; }

  /* Hero */
  .hero { padding: 72px 20px 64px; min-height: 100svh; }
  .hero h1 { font-size: clamp(2.1rem, 7.5vw, 2.8rem); letter-spacing: .005em; }
  .hero-sub { font-size: 1rem; margin-bottom: 32px; }

  /* Hero form: apila en columna */
  .hero-form { width: 100%; }
  .form-row {
    flex-direction: column; border-radius: 20px;
    padding: 16px; gap: 0; align-items: stretch;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
  }
  .input-select {
    border-right: none; border-bottom: 1px solid #e2e8f0;
    padding: 12px 4px; font-size: 1rem;
  }
  .input-text {
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 4px; font-size: 1rem;
  }
  .btn-hero {
    width: 100%; margin-top: 12px; padding: 14px;
    font-size: 1rem; border-radius: 12px;
  }
  .form-note { font-size: .75rem; line-height: 1.5; margin-top: 12px; }

  /* Hero CTAs secundarios */
  .hero-ctas { margin-top: 22px; }
  .hero-ctas-row { gap: 10px; }
  .cta-secondary { flex: 1 1 140px; padding: 12px 18px; font-size: .9rem; }

  /* Hero stats: 2×2 grid */
  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px 0; margin-top: 48px; padding-top: 36px;
  }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.9rem; }

  /* Sections */
  .problems { padding: 60px 16px; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .problem-card:nth-child(6) { grid-column-start: auto; }
  .problem-card { padding: 18px 12px; }
  .problem-card h3 { font-size: .9rem; }
  .problem-card p { font-size: .78rem; }
  .problem-cta { flex-direction: column; text-align: center; gap: 16px; padding: 20px; }

  .how-it-works { padding: 60px 16px; }
  .how-card { padding: 32px 24px; border-radius: 18px; }
  .step-content { padding-bottom: 36px; }
  .step-content h3 { font-size: 1.05rem; }

  .pricing { padding: 60px 16px; }
  .pricing-card { padding: 28px 22px; }
  .pricing-header h3 { font-size: 1.35rem; }
  .tier { padding: 14px 16px; }
  .tier-info h4 { font-size: 1rem; }
  .tier-price { font-size: 1.15rem; }
  .tier.featured .tier-price { font-size: 1.4rem; }
  .quote-price { font-size: .9rem !important; padding: 5px 10px; }
  .pricing-gift-banner { padding: 18px 20px; }
  .pricing-gift-banner p { font-size: .92rem; }

  .testimonials { padding: 60px 16px; }
  .testimonial { padding: 28px 20px; }
  .testimonial p { font-size: .95rem; }

  .faq { padding: 60px 16px; }
  .faq-q { font-size: .9rem; padding: 16px 18px; }
  .faq-item.open .faq-a { max-height: 320px; }

  /* Contacto */
  .contact-section { padding: 60px 16px; }
  .contact-left, .contact-right { padding: 28px 22px; border-radius: 18px; }
  .contact-phones { flex-direction: column; }
  .phone-link, .whatsapp-link { justify-content: center; }

  /* Footer */
  .footer { padding: 48px 16px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand .logo-img { height: 36px; }

  /* WhatsApp flotante */
  .whatsapp-float { width: 100px; height: 100px; bottom: 16px; right: 12px; }
  .wa-tooltip { display: none; }

  /* Modal */
  .modal { padding: 36px 24px; }
}
