/* ===================================================
  ONDA DE OFERTAS - style.css
   =================================================== */

/* ===== TOKENS ===== */
:root {
  --bg:            #0a1520;
  --bg-alt:        #0d1b2a;
  --bg-card:       #111f2e;
  --bg-card-hover: #152435;
  --border:        rgba(143, 184, 204, 0.12);
  --border-hover:  rgba(143, 184, 204, 0.35);

  --brand:         #8fb8cc;
  --brand-bright:  #a8d4e8;
  --brand-glow:    rgba(143, 184, 204, 0.25);

  --gold:          #ffd60a;
  --gold-dim:      rgba(255, 214, 10, 0.15);
  --orange:        #ff9500;
  --orange-dim:    rgba(255, 149, 0, 0.15);

  --text:          #f0f4f8;
  --text-muted:    #7a94a8;

  --radius:        14px;
  --radius-btn:    50px;
  --transition:    0.25s ease;

  --font-body:     'Inter', sans-serif;
  --font-display:  'Space Grotesk', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
}
img, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn:focus-visible {
  outline: 2px solid var(--brand-bright);
  outline-offset: 3px;
}

.btn--lg  { padding: 15px 36px; font-size: 1rem; }
.btn--xl  { padding: 18px 44px; font-size: 1.1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--brand);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--brand-bright);
  box-shadow: 0 0 24px var(--brand-glow);
}

.btn--whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn--ghost:hover {
  background: var(--brand-glow);
  box-shadow: 0 0 16px var(--brand-glow);
}

.btn--instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #fff;
}
.btn--instagram:hover {
  box-shadow: 0 6px 28px rgba(253, 29, 29, 0.4);
}

.btn--youtube {
  background: #ff2d2d;
  color: #ffffff;
}
.btn--youtube:hover {
  background: #e11f1f;
  box-shadow: 0 6px 24px rgba(255, 45, 45, 0.4);
}

.btn--icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

.btn--instagram-round {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: #ffffff;
}
.btn--instagram-round:hover {
  box-shadow: 0 6px 22px rgba(253, 29, 29, 0.45);
}

.btn--whatsapp-round {
  background: #25d366;
  color: #ffffff;
}
.btn--whatsapp-round:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}

.btn--ml {
  background: var(--gold);
  color: #0a0a0a;
  font-weight: 700;
}
.btn--ml:hover { box-shadow: 0 6px 24px rgba(255, 214, 10, 0.4); }

.btn--amz {
  background: var(--orange);
  color: #0a0a0a;
  font-weight: 700;
}
.btn--amz:hover { box-shadow: 0 6px 24px rgba(255, 149, 0, 0.4); }

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo__icon {
  width: 44px;
  height: auto;
  object-fit: contain;
  animation: logo-bob 3s ease-in-out infinite;
}
.logo__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.logo__text strong {
  color: var(--brand);
  font-weight: 700;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 21, 32, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  justify-self: start;
}

.header__social {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
}

.nav {
  display: flex;
  gap: 32px;
  justify-self: center;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__link:hover { color: var(--brand); }
.nav__link:hover::after { width: 100%; }

.nav__link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 6px;
  border-radius: 4px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 160px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .hero__content {
    max-width: 980px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero__title br {
    display: none;
  }

  .hero__title--firstline {
    white-space: nowrap;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(143, 184, 204, 0.1);
  border: 1px solid var(--border-hover);
  color: var(--brand);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
  animation: fade-up 0.6s 0.15s ease both;
}
.hero__title--accent {
  color: var(--brand);
  position: relative;
}

.hero__title--onda {
  display: inline-block;
  font-family: 'Silkscreen', monospace;
  font-size: 0.8em;
  font-weight: 700;
  color: #b7def0;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  transform: translateY(-0.04em);
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: auto;
  text-rendering: geometricPrecision;
  text-shadow:
    1px 0 0 #b7def0,
    0 1px 0 #b7def0,
    2px 0 0 #8cb9cf,
    0 2px 0 #8cb9cf,
    2px 2px 0 #8cb9cf,
    3px 3px 0 rgba(10, 30, 44, 0.95);
}

.hero__title--tail {
  white-space: normal;
}

.hero__title--mundo {
  display: inline;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fade-up 0.6s 0.3s ease both;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  animation: fade-up 0.6s 0.45s ease both;
}

.hero__trust {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  animation: fade-up 0.6s 0.52s ease both;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fade-up 0.6s 0.6s ease both;
  flex-wrap: wrap;
  gap: 8px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px;
}
.stat:first-child { padding-left: 0; }
.stat__number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero wave SVG */
.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero__wave svg { width: 100%; height: auto; display: block; }

.wave-path { fill: var(--bg-alt); }
.wave-path--1 {
  opacity: 0.6;
  animation: wave-drift 14s ease-in-out infinite;
}
.wave-path--2 {
  opacity: 0.8;
  animation: wave-drift 10s ease-in-out infinite reverse;
}
.wave-path--3 {
  opacity: 1;
  animation: wave-drift 8s ease-in-out infinite;
}

/* Pixel decorations */
.pixel-grid { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.pixel {
  position: absolute;
  background: var(--brand);
  border-radius: 3px;
  animation: pixel-pulse 4s ease-in-out infinite;
}

/* ===== SECTION BASE ===== */
.section { padding: 96px 0; }
.section--alt { background: var(--bg-alt); }

.section__header {
  text-align: center;
  margin-bottom: 60px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.section__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ===== PLATFORMS ===== */
.platforms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.platform-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}
.platform-card--ml  { border-top: 3px solid var(--gold); }
.platform-card--amz { border-top: 3px solid var(--orange); }

.platform-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.platform-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.platform-badge--ml  { background: var(--gold-dim);   color: var(--gold);   border: 1px solid rgba(255,214,10,0.3); }
.platform-badge--amz { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(255,149,0,0.3); }

.platform-icon { font-size: 2rem; }

.platform-logo {
  width: 60px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  opacity: 0.9;
}

.platform-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.platform-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.platform-card__list {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex-grow: 0;
}

.btn--ml,
.btn--amz {
  margin-bottom: 8px;
}
.platform-card__list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.platform-card__info {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

.section__title-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.section__title-link:hover {
  color: var(--brand-bright);
  border-bottom-color: var(--brand-bright);
}

.section__title-link:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
  border-bottom-color: var(--brand);
}

.platform-card__info a {
  color: var(--brand);
  text-decoration: underline;
  transition: color var(--transition);
}

.platform-card__info a:hover {
  color: var(--brand-bright);
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.step:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px var(--brand-glow);
}

.step__num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--brand);
  opacity: 0.08;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.step__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: auto;
  padding-top: 16px;
  flex-wrap: nowrap;
}

.step__actions .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  flex: 1;
  min-width: 0;
}

.step__wave {
  align-self: center;
  font-size: 1.8rem;
  color: var(--brand);
  opacity: 0.3;
  padding: 0 8px;
  letter-spacing: -4px;
  flex-shrink: 0;
}

/* ===== COUPONS ===== */
.coupons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}

.coupon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.coupon-card .btn--full {
  margin-top: auto;
}

.coupon-card--loading {
  min-height: 220px;
  justify-content: center;
  align-items: center;
}

.coupon-card__loading-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.coupon-card__image-link {
  display: block;
}

.coupon-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0b1724;
}

.coupon-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  background:
    radial-gradient(circle at 20% 30%, rgba(143, 184, 204, 0.2), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(143, 184, 204, 0.15), transparent 50%),
    #0b1724;
}
.coupon-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.coupon-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coupon-badge {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.coupon-badge--ml  { background: var(--gold-dim);   color: var(--gold);   border: 1px solid rgba(255,214,10,0.25); }
.coupon-badge--amz { background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(255,149,0,0.25); }

.coupon-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  padding: 3px 10px;
  border-radius: 50px;
}

.coupon-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.coupon-card__pricing {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price--original {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price--off {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #1a6b8a, var(--brand));
  padding: 3px 9px;
  border-radius: 50px;
}
.price--final {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.coupon-code {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(143, 184, 204, 0.07);
  border: 1px dashed rgba(143, 184, 204, 0.3);
  border-radius: 8px;
  padding: 8px 14px;
}
.coupon-code__label {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.coupon-code__value {
  font-family: 'Courier New', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.1em;
}

.coupons__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.coupons__cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== BENEFITS ===== */
.benefits__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.text--accent { color: var(--brand); }

.benefits__desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  font-size: 0.97rem;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  min-height: 140px;
  justify-content: flex-start;
}
.benefit-item:hover { border-color: var(--border-hover); }

.benefit-item__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(143, 184, 204, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--brand);
}

.benefit-item__icon svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.benefit-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.benefit-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: linear-gradient(135deg, #0a1520 0%, #0f2035 50%, #0a1520 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-final__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-final__pixels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta-final__pixels span {
  position: absolute;
  background: var(--brand);
  border-radius: 3px;
  opacity: 0.06;
  animation: pixel-pulse 5s ease-in-out infinite;
}
.cta-final__pixels span:nth-child(1) { width:16px;height:16px;top:15%;left:5%; animation-delay:.2s; }
.cta-final__pixels span:nth-child(2) { width:10px;height:10px;top:30%;left:10%; animation-delay:1s; }
.cta-final__pixels span:nth-child(3) { width:20px;height:20px;top:60%;left:7%; animation-delay:1.8s; }
.cta-final__pixels span:nth-child(4) { width:12px;height:12px;top:80%;left:3%; animation-delay:.6s; }
.cta-final__pixels span:nth-child(5) { width:18px;height:18px;top:10%;right:6%; animation-delay:1.4s; }
.cta-final__pixels span:nth-child(6) { width:10px;height:10px;top:40%;right:10%; animation-delay:.4s; }
.cta-final__pixels span:nth-child(7) { width:14px;height:14px;top:65%;right:4%; animation-delay:2s; }
.cta-final__pixels span:nth-child(8) { width:22px;height:22px;top:85%;right:8%; animation-delay:1.2s; }

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
}
.cta-final__subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 8px;
}

.cta-final__title--mobile,
.cta-final__subtitle--mobile {
  display: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer__tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 14px;
}
.footer__nav-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--brand); }

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.mobile-sticky-cta {
  display: none;
}

/* ===== FOOTER TEAM ===== */
.footer__team {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  justify-content: flex-start;
}

.footer__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer__avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  transition: transform var(--transition), border-color var(--transition);
}

.footer__avatar-link {
  text-decoration: none;
  overflow: hidden;
}

.footer__avatar:hover {
  transform: scale(1.08);
  border-color: var(--brand);
}

.footer__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  background: linear-gradient(135deg, #102235, #1b344e);
}

.footer__member-name {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  text-align: center;
}

/* ===== FOOTER SOCIAL LINKS ===== */
.footer__social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__social-links .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  font-size: 0;
  gap: 0;
}

.footer__social-links .btn svg {
  width: 24px;
  height: 24px;
}

/* ===== SCROLL FADE-IN ===== */
.fade-in-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ANIMATIONS ===== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes logo-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

@keyframes wave-drift {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(-18px); }
}

@keyframes pixel-pulse {
  0%, 100% { opacity: var(--op, 0.12); transform: scale(1); }
  50%       { opacity: calc(var(--op, 0.12) * 1.8); transform: scale(1.15); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .benefits__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 88px;
  }

  .container {
    padding: 0 16px;
  }

  .header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'logo social'
      'nav nav';
    align-items: center;
    row-gap: 12px;
    column-gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo {
    grid-area: logo;
    align-self: center;
  }

  .header__social {
    grid-area: social;
    justify-self: end;
    order: initial;
  }

  .nav {
    grid-area: nav;
    order: initial;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
  }

  .nav__link {
    font-size: 0.82rem;
  }

  .logo__icon {
    width: 40px;
  }

  .hero {
    padding: 60px 0 130px;
    min-height: auto;
  }

  .hero__content { text-align: center; margin: 0 auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { text-align: center; }
  .hero__stats { justify-content: center; }

  .steps {
    flex-direction: column;
    gap: 16px;
  }
  .step__wave {
    display: none;
  }

  .benefits__grid { grid-template-columns: 1fr; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section { padding: 64px 0; }
  .section__header { margin-bottom: 40px; }

  .cta-final__title--desktop,
  .cta-final__subtitle--desktop {
    display: none;
  }

  .cta-final__title--mobile,
  .cta-final__subtitle--mobile {
    display: block;
  }

  .hero__title {
    font-size: clamp(2rem, 10vw, 2.8rem);
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .hero__title--tail {
    white-space: normal;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__title--mundo {
    display: block;
  }

  .coupons__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .mobile-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
  }
}

@media (max-width: 480px) {
  .logo__text { font-size: 0.9rem; }
  .header__social { gap: 8px; }
  .hero__stats { flex-direction: column; align-items: center; gap: 12px; }
  .stat__divider { width: 40px; height: 1px; }
  .stat { padding: 0; align-items: center; }
  .platforms__grid { grid-template-columns: 1fr; }
  .btn--xl { padding: 16px 32px; font-size: 1rem; }

  .hero__title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
    line-height: 1.15;
  }

  .hero__subtitle,
  .step__text,
  .benefit-item p {
    overflow-wrap: anywhere;
  }

  .btn--icon {
    width: 40px;
    height: 40px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
