/* ════════════════════════════════════════════════════════════
   BOOSTCOM — styles.css
   Dark premium agency · Lime accent · Bebas Neue + Instrument Sans
   ════════════════════════════════════════════════════════════ */

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

:root {
  --bg:          #060608;
  --bg-2:        #0d0d10;
  --bg-card:     #13131a;
  --bg-card-2:   #1a1a24;
  --lime:        #c8ff00;
  --lime-dim:    #9dcc00;
  --white:       #f4f4f0;
  --muted:       #8888a0;
  --border:      #222230;
  --border-2:    #2d2d40;

  --font-display: 'Bebas Neue', sans-serif;
  --font-ui:      'Barlow', sans-serif;
  --font-body:    'Instrument Sans', sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --max-w:       1200px;
  --nav-h:       68px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ── UTILITIES ───────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.check { color: var(--lime); font-weight: 700; margin-right: 6px; }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.22s var(--ease-out);
  white-space: nowrap;
}
.btn--lime {
  background: var(--lime);
  color: #0a0a0a;
}
.btn--lime:hover {
  background: #d8ff30;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 255, 0, 0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-2);
}
.btn--ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border-2);
  width: 100%;
  justify-content: center;
}
.btn--outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}
.btn--full { width: 100%; justify-content: center; }
.btn--dark {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid var(--border-2);
  width: 100%;
  justify-content: center;
}
.btn--dark:hover { background: rgba(255,255,255,0.13); }

/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.nav.scrolled {
  background: rgba(6,6,8,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.2s;
}
.nav__logo span { color: var(--lime); }
.nav__logo:hover { opacity: 0.85; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav__cta-btn {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  background: var(--lime);
  color: #0a0a0a;
  padding: 9px 18px;
  border-radius: 7px;
  transition: all 0.2s;
}
.nav__cta-btn:hover {
  background: #d8ff30;
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 32px 80px;
  overflow: hidden;
  text-align: center;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 0;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.hero__dot {
  width: 7px; height: 7px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,255,0,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(200,255,0,0); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__accent {
  color: var(--lime);
  font-style: normal;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero__stat {
  padding: 24px 36px;
  text-align: center;
  flex: 1;
}
.hero__stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.hero__stat-val {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--lime);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero__stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  font-family: var(--font-ui);
}
.hero__stat-label strong { color: var(--white); }

.hero__scroll-cta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 1;
  transition: color 0.2s;
}
.hero__scroll-cta:hover { color: var(--lime); }
.hero__arrow {
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ════════════════════════════════════════════════════════════
   XUNTA / OFERTA
   ════════════════════════════════════════════════════════════ */
.xunta {
  padding: 120px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.xunta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.xunta__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.xunta__zero {
  color: var(--lime);
  position: relative;
}
.xunta__text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.xunta__text strong { color: var(--white); }

.xunta__steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.xunta__step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.xunta__step-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--lime);
  line-height: 1;
  min-width: 36px;
  padding-top: 2px;
}
.xunta__step-body { display: flex; flex-direction: column; gap: 4px; }
.xunta__step-body strong {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.xunta__step-body span {
  font-size: 14px;
  color: var(--muted);
}

/* Xunta Card */
.xunta__card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.xunta__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--lime-dim));
}
.xunta__card-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.xunta__card-prices {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}
.xunta__price-old {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.6;
}
.xunta__price-new {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--lime);
  line-height: 1;
}
.xunta__card-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.xunta__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.xunta__list li {
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-ui);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ════════════════════════════════════════════════════════════
   HONEST / NOSOTROS
   ════════════════════════════════════════════════════════════ */
.honest {
  padding: 120px 32px;
  background: var(--bg);
}
.honest__inner { max-width: var(--max-w); margin: 0 auto; }
.honest__header {
  margin-bottom: 64px;
}
.honest__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.honest__title em {
  font-style: normal;
  color: var(--lime);
}
.honest__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.honest__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.25s, transform 0.25s;
}
.honest__card:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}
.honest__icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.honest__card h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 12px;
}
.honest__card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   QUÉ INCLUYE
   ════════════════════════════════════════════════════════════ */
.incluye {
  padding: 120px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.incluye__inner { max-width: var(--max-w); margin: 0 auto; }
.incluye__header { margin-bottom: 64px; }
.incluye__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0.01em;
}
.incluye__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.incluye__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.incluye__item:hover {
  border-color: rgba(200,255,0,0.3);
  transform: translateY(-3px);
}
.incluye__icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.incluye__item h3 {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
}
.incluye__item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   PLANES / PRECIOS
   ════════════════════════════════════════════════════════════ */
.planes {
  padding: 120px 32px;
  background: var(--bg);
}
.planes__inner { max-width: var(--max-w); margin: 0 auto; }
.planes__header { margin-bottom: 64px; }
.planes__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.planes__sub {
  font-size: 16px;
  color: var(--muted);
  font-family: var(--font-ui);
}

.planes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}
.plan:hover { border-color: var(--border-2); transform: translateY(-4px); }

.plan--featured {
  background: var(--bg-card-2);
  border-color: var(--lime);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px var(--lime), 0 24px 64px rgba(200,255,0,0.12);
}
.plan--featured:hover {
  transform: scale(1.03) translateY(-4px);
  border-color: var(--lime);
}

.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #0a0a0a;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan__header { margin-bottom: 24px; }
.plan__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}
.plan__type {
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-ui);
}

.plan__price-block { margin-bottom: 20px; }
.plan__price {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.01em;
}
.plan--featured .plan__price { color: var(--lime); }
.plan__currency { font-size: 32px; vertical-align: top; margin-top: 8px; display: inline-block; }
.plan__period {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
}
.plan__price-sub {
  font-size: 12px;
  color: var(--lime);
  font-family: var(--font-ui);
  font-weight: 600;
  margin-top: 4px;
}

.plan__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.plan__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.plan__list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font-ui);
  line-height: 1.4;
}
.plan__list li span {
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
}

.planes__note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 14px 24px;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
}

/* ════════════════════════════════════════════════════════════
   GARANTÍA
   ════════════════════════════════════════════════════════════ */
.garantia {
  padding: 120px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.garantia::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.garantia__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.garantia__shield {
  font-size: 56px;
  margin-bottom: 20px;
}
.garantia__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.garantia__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.garantia__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.garantia__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.garantia__icon { font-size: 24px; flex-shrink: 0; }
.garantia__item div { display: flex; flex-direction: column; gap: 3px; }
.garantia__item strong {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.garantia__item span {
  font-size: 13px;
  color: var(--muted);
}

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq {
  padding: 120px 32px;
  background: var(--bg);
}
.faq__inner { max-width: 800px; margin: 0 auto; }
.faq__header { margin-bottom: 56px; }
.faq__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0.01em;
}
.faq__list { display: flex; flex-direction: column; gap: 0; }

.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__q {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  transition: color 0.2s;
}
.faq__q:hover { color: var(--lime); }

.faq__icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s, color 0.2s;
  width: 24px;
  text-align: center;
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  color: var(--lime);
}
.faq__item.open .faq__q { color: var(--lime); }

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
  padding: 0;
}
.faq__item.open .faq__a {
  max-height: 300px;
  padding-bottom: 22px;
}
.faq__a p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════
   CONTACTO
   ════════════════════════════════════════════════════════════ */
.contacto {
  padding: 120px 32px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contacto::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.contacto__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contacto__left { display: flex; flex-direction: column; align-items: flex-start; }
.contacto__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.93;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  color: var(--white);
}
.contacto__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.contacto__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.contacto__main-btn {
  font-size: 16px;
  padding: 15px 28px;
}
.contacto__note {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted);
}

/* Form right column */
.contacto__right { width: 100%; }
.contacto__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.contacto__form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lime), var(--lime-dim));
}
.contacto__form-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 20px 24px 14px;
  border-bottom: 1px solid var(--border);
}
.contacto__iframe {
  width: 100%;
  height: 640px;
  border: none;
  display: block;
  background: transparent;
  /* Google Forms has a white bg — clip it cleanly */
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

@media (max-width: 1024px) {
  .contacto__inner { grid-template-columns: 1fr; gap: 48px; }
  .contacto__left { align-items: center; text-align: center; }
  .contacto__btns { justify-content: center; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  padding: 60px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.05em;
}
.footer__logo span { color: var(--lime); }
.footer__tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  text-align: right;
}
.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer__nav a {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted);
  gap: 16px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .xunta__inner { grid-template-columns: 1fr; gap: 48px; }
  .garantia__inner { grid-template-columns: 1fr; gap: 48px; }
  .planes__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
  .incluye__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(6,6,8,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }
  .nav__links.open { display: flex; }
  .nav__link { padding: 14px 16px; font-size: 16px; }
  .nav__hamburger { display: flex; }

  .hero__stats {
    flex-direction: column;
    gap: 0;
  }
  .hero__stat-divider {
    width: 100%;
    height: 1px;
  }

  .honest__grid { grid-template-columns: 1fr; }
  .incluye__grid { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; }
  .footer__tagline { text-align: left; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .xunta__inner,
  .garantia__inner { padding: 0; }
}

@media (max-width: 480px) {
  .hero { padding: calc(var(--nav-h) + 40px) 20px 60px; }
  .xunta, .honest, .incluye, .planes, .garantia, .faq, .contacto { padding: 80px 20px; }
  .footer { padding: 48px 20px; }
  .nav__inner { padding: 0 20px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .contacto__btns { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  overflow: hidden;
}
.wa-float:hover {
  background: #20bc5a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.55);
}
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: #25D366;
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
.wa-float__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
.wa-float__label {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
@media (max-width: 380px) {
  .wa-float { padding: 15px; border-radius: 50%; }
  .wa-float__label { display: none; }
}
