@import url('../fonts/fonts.css');

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --bg:        #07080f;
  --surface:   #0d0f1c;
  --surface2:  #0f1121;
  --text:      #ffffff;
  --muted:     #7a869a;
  --line:      rgba(255,255,255,.08);
  --accent:    #1450a3;
  --accent-dk: #0f3d8a;
  --accent-lt: #1e64c8;
  --energy:    #d95f1c;
  --energy-lt: #f97316;
  --ink:       #ffffff;
  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-body:    'Roboto', sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; }
body   { background: var(--bg); color: var(--text); font-family: var(--ff-body); line-height: 1.6; }
img    { display: block; max-width: 100%; }
a      { color: inherit; text-decoration: none; }

/* ── Utilitários ─────────────────────────────────────────── */
.container { width: min(1160px, calc(100% - 48px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--energy-lt);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--energy-lt);
  flex-shrink: 0;
}

/* ── Tipografia ──────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--ff-display);
  text-transform: uppercase;
  line-height: .90;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(72px, 11vw, 148px); font-weight: 800; }
h2 { font-size: clamp(40px, 6vw, 84px);   font-weight: 700; margin-bottom: 18px; }
h3 { font-size: 26px; font-weight: 700; }

/* ── Botões ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 52px; padding: 0 32px;
  font-family: var(--ff-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary       { background: var(--energy); color: #fff; }
.btn--primary:hover { background: var(--energy-lt); }
.btn--ghost         { border-color: rgba(255,255,255,.25); color: var(--text); background: transparent; }
.btn--ghost:hover   { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--blue          { background: var(--accent); color: #fff; }
.btn--blue:hover    { background: var(--accent-lt); }

/* ── Header ──────────────────────────────────────────────── */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(7,8,15,.90);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; height: 68px;
}

/* ── Nav principal ───────────────────────────────────────── */
.main-nav {
  position: fixed; top: 0; right: 24px;
  height: 68px; display: flex; align-items: center; z-index: 101;
}
.brand {
  display: flex; align-items: center; flex-shrink: 0;
  font-family: var(--ff-display); font-size: 20px; font-weight: 700;
  color: var(--text); letter-spacing: .04em;
}
.brand img { display: block; height: auto; }
.nav {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav a {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); transition: color .15s;
}
.nav a:hover { color: var(--text); }
.nav__cta .btn { min-height: 38px; padding: 0 20px; font-size: 12px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7,8,15,.97) 0%, rgba(7,8,15,.70) 50%, rgba(7,8,15,.15) 100%),
    linear-gradient(to top, rgba(7,8,15,.92) 0%, transparent 50%),
    url('../img/hero.png') center / cover no-repeat;
  background-color: var(--bg);
}

/* feixe de luz em movimento — sensação de velocidade */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    104deg,
    transparent 0%,
    transparent 28%,
    rgba(255,255,255,.012) 38%,
    rgba(255,255,255,.055) 50%,
    rgba(255,255,255,.012) 62%,
    transparent 72%,
    transparent 100%
  );
  animation: speed-sweep 8s cubic-bezier(.4,0,.2,1) infinite;
  pointer-events: none;
}

@keyframes speed-sweep {
  0%   { transform: translateX(-110%); opacity: 0; }
  6%   { opacity: 1; }
  48%  { transform: translateX(110%); opacity: .9; }
  55%  { transform: translateX(110%); opacity: 0; }
  100% { transform: translateX(110%); opacity: 0; }
}

/* faixa de energia diagonal */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(to top, var(--energy), transparent 70%);
  pointer-events: none;
}

.hero__content { position: relative; z-index: 1; max-width: 820px; padding-top: 68px; }
.hero__eyebrow { margin-bottom: 24px; }
.hero h1       { margin-bottom: 8px; line-height: .88; }
.hero h1 .name-line { display: block; color: var(--text); }
.hero h1 .last-line {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.20);
}
.hero__tagline {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--energy-lt);
  margin-bottom: 28px;
  line-height: 1;
}
.hero__sub {
  font-size: 17px; font-weight: 300;
  color: var(--muted); max-width: 400px; margin-bottom: 44px; line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__scroll {
  position: absolute; bottom: 36px; right: 48px;
  writing-mode: vertical-rl;
  font-size: 10px; font-weight: 700;
  letter-spacing: .20em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: 12px;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--energy), transparent);
}

/* ── Stats bar ───────────────────────────────────────────── */
.stats {
  background: linear-gradient(90deg, var(--accent-dk) 0%, var(--accent) 100%);
  border-top: 2px solid var(--energy);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,.12);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800; line-height: .95;
  margin-bottom: 6px; color: #fff;
  letter-spacing: -.02em;
}
.stat span {
  font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.60);
}

/* ── Seção genérica ──────────────────────────────────────── */
.section          { padding: 112px 0; }
.section--dark    { background: var(--bg); }
.section--surface { background: var(--surface); }
.section__header  { margin-bottom: 68px; }
.section__header p {
  font-size: 17px; color: var(--muted);
  max-width: 560px; margin-top: 18px; line-height: 1.75;
}

/* ── Sobre ───────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about__text p {
  font-size: 17px; color: var(--muted);
  line-height: 1.85; margin-top: 24px;
}
.about__text p + p { margin-top: 16px; }
.about__pull {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700; text-transform: uppercase;
  color: var(--text); line-height: 1.1;
  border-left: 3px solid var(--energy);
  padding-left: 20px; margin: 32px 0 4px;
}
.about__sign {
  display: inline-block; margin-top: 36px;
  font-family: 'Brush Script MT', cursive;
  font-size: 38px; color: rgba(255,255,255,.45);
}
.about__img { position: relative; }
.about__img img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  position: relative; z-index: 1;
}
.about__img::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--energy);
  opacity: .4;
  z-index: 0;
}
.about__img::after {
  content: '';
  position: absolute;
  bottom: -8px; right: -8px;
  width: 80px; height: 80px;
  background: var(--energy);
  opacity: .08;
  z-index: 0;
}

/* ── WhatsApp flutuante ──────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 200;
  width: 58px; height: 58px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 24px rgba(37,211,102,.40);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37,211,102,.60);
}

/* ── Incluso em todos os planos ──────────────────────────── */
.includes {
  background: var(--surface2);
  border: 1px solid rgba(20,80,163,.25);
  border-left: 3px solid var(--energy);
  padding: 36px 40px;
  margin-bottom: 40px;
}
.includes__title {
  font-family: var(--ff-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--energy-lt); margin-bottom: 32px;
}
.includes__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.includes__item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 12px;
}
.includes__icon {
  width: 52px; height: 52px;
  background: rgba(20,80,163,.15);
  border: 1px solid rgba(20,80,163,.30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-lt); flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.includes__item:hover .includes__icon {
  background: rgba(217,95,28,.15);
  border-color: rgba(217,95,28,.30);
  color: var(--energy-lt);
}
.includes__item span {
  font-size: 11px; font-weight: 600;
  color: var(--muted); line-height: 1.4;
  text-transform: uppercase; letter-spacing: .06em;
}

/* ── Planos em linha ─────────────────────────────────────── */
.plan-list { display: flex; flex-direction: column; gap: 4px; }

.plan-row {
  position: relative;
  display: flex; align-items: center; gap: 24px;
  background: var(--surface2);
  border: 1px solid var(--line);
  padding: 26px 32px;
  transition: border-color .2s, background .2s;
  cursor: default;
}
.plan-row:hover {
  border-color: rgba(20,80,163,.35);
  background: rgba(20,80,163,.06);
}

.plan-row--featured {
  background: rgba(20,80,163,.10);
  border-color: rgba(20,80,163,.40);
  border-left: 3px solid var(--energy);
}
.plan-row--featured:hover { border-color: var(--accent); }

.plan-row--addon {
  background: var(--surface);
  border-style: dashed;
}

.plan-addon-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 24px 0 4px;
}
.plan-addon-divider::before,
.plan-addon-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.plan-addon-divider span {
  font-family: var(--ff-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}

.plan-row__badge {
  position: absolute; top: -13px; left: 32px;
  background: var(--energy); color: #fff;
  font-family: var(--ff-display);
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 14px;
}

.plan-row__icon {
  flex-shrink: 0; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.plan-row__icon--bike     { background: var(--accent); }
.plan-row__icon--calendar { background: var(--accent-dk); }
.plan-row__icon--gym      { background: var(--surface); border: 1px solid var(--line); color: var(--muted); }

.plan-row__info { flex: 1; }
.plan-row__info strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 700;
  text-transform: uppercase; line-height: 1;
  margin-bottom: 5px; color: var(--text);
  letter-spacing: .02em;
}
.plan-row__info span { font-size: 13px; color: var(--muted); }

.plan-row__price { text-align: right; flex-shrink: 0; }
.plan-row__price strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 42px; font-weight: 800; line-height: 1;
  color: var(--energy-lt); letter-spacing: -.02em;
}
.plan-row__price strong sup { font-size: 20px; vertical-align: super; }
.plan-row__price span {
  font-size: 11px; font-weight: 700;
  letter-spacing: .10em; text-transform: uppercase;
  color: var(--muted);
}
.plan-row .btn { flex-shrink: 0; min-height: 46px; padding: 0 24px; }

/* Notas */
.plan-notes { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.plan-notes p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.6;
}
.plan-notes svg { flex-shrink: 0; margin-top: 3px; color: var(--energy-lt); }

/* ── Ferramentas ─────────────────────────────────────────── */
.tools__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tool-card {
  background: var(--surface2);
  border: 1px solid var(--line);
  padding: 40px 28px 36px;
  text-align: center;
  transition: border-color .22s, transform .22s;
  cursor: default;
}
.tool-card:hover {
  border-color: rgba(217,95,28,.30);
  transform: translateY(-4px);
}
.tool-card__logo-wrap {
  width: 80px; height: 80px;
  border-radius: 20px; overflow: hidden;
  margin: 0 auto 24px;
}
.tool-card__logo {
  width: 80px; height: 80px;
  object-fit: cover; border-radius: 20px;
}
.tool-card__name {
  font-family: var(--ff-display);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 12px; color: var(--text);
}
.tool-card__desc {
  font-size: .875rem; color: var(--muted); line-height: 1.65;
}

/* ── Instagram Feed ──────────────────────────────────────── */
.instagram-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; max-width: 920px; margin-inline: auto;
}
.instagram-card {
  position: relative; display: block; min-width: 0;
  aspect-ratio: 1; overflow: hidden;
  background: var(--surface2);
  border: 1px solid rgba(255,255,255,.07);
}
.instagram-card__media {
  position: absolute; inset: 0; display: block;
}
.instagram-card__media img {
  display: block; width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.instagram-card__fallback {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  color: rgba(255,255,255,.50);
  background: linear-gradient(135deg, rgba(20,80,163,.30), rgba(13,15,28,.95));
}
.instagram-card__type {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: rgba(7,8,15,.70); color: #fff;
}
.instagram-card__overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,80,163,.44);
  color: #fff; opacity: 0;
  transition: opacity .25s ease;
}
.instagram-card:hover img,
.instagram-card:focus-visible img {
  transform: scale(1.06); filter: saturate(1.08);
}
.instagram-card:hover .instagram-card__overlay,
.instagram-card:focus-visible .instagram-card__overlay { opacity: 1; }
.instagram-empty {
  max-width: 620px; margin-inline: auto;
  padding: 42px 32px;
  border: 1px solid var(--line);
  background: var(--surface2); text-align: center;
}
.instagram-empty__icon {
  width: 68px; height: 68px; margin: 0 auto 20px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #515bd4);
}
.instagram-empty h3 { margin-bottom: 12px; font-size: 24px; }
.instagram-empty p { max-width: 430px; margin-inline: auto; color: var(--muted); }

/* ── CTA final ───────────────────────────────────────────── */
.cta-section {
  padding: 128px 0; text-align: center;
  position: relative; overflow: hidden;
  background:
    linear-gradient(rgba(7,8,15,.80), rgba(7,8,15,.80)),
    url('../img/treinar.png') center / cover no-repeat;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -65deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,.012) 80px,
    rgba(255,255,255,.012) 81px
  );
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--energy), var(--accent), var(--energy));
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2  { max-width: 640px; margin-inline: auto; margin-bottom: 14px; }
.cta-section p   { font-size: 17px; color: var(--muted); margin-bottom: 44px; }
.cta-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0; background: var(--bg);
}
.footer__grid {
  display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 32px; align-items: start;
}
.footer__brand img { width: 160px; height: auto; }
.footer__links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer__links a {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); transition: color .15s;
}
.footer__links a:hover { color: var(--text); }
.footer__copy { margin-top: 20px; font-size: 13px; color: var(--muted); }
.footer__dev  { margin-top: 8px; font-size: 12px; color: rgba(255,255,255,.35); }
.footer__dev-link {
  color: var(--energy-lt);
  transition: color .15s;
}
.footer__dev-link:hover { color: #fff; }

/* ── Login page ──────────────────────────────────────────── */
.login-wrap {
  min-height: 100svh; display: grid; place-items: center; padding: 24px;
  background:
    linear-gradient(rgba(7,8,15,.90), rgba(7,8,15,.90)),
    url('/assets/img/hero.png') center / cover no-repeat;
  background-color: var(--bg);
}
.login-box {
  width: 100%; max-width: 400px;
  background: var(--surface); border: 1px solid var(--line); padding: 48px 40px;
}
.login-box .brand  { display: block; margin-bottom: 32px; font-size: 20px; }
.login-box h1      { font-size: 28px; margin-bottom: 32px; }
.field             { margin-bottom: 20px; }
.field label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.field input {
  width: 100%; height: 48px; padding: 0 14px;
  background: var(--surface2); border: 1px solid var(--line);
  color: var(--text); font: 15px/1 'Roboto', sans-serif;
  outline: none; transition: border-color .15s;
}
.field input:focus { border-color: var(--accent-lt); }
.login-error {
  padding: 12px 14px; background: rgba(255,60,60,.10);
  border-left: 2px solid #ff3c3c; color: #ff8080;
  font-size: 14px; margin-bottom: 20px;
}
.login-box .btn    { width: 100%; justify-content: center; margin-top: 8px; }
.login-back {
  display: block; text-align: center; margin-top: 24px;
  font-size: 12px; font-weight: 700;
  letter-spacing: .10em; text-transform: uppercase;
  color: var(--muted); transition: color .15s;
}
.login-back:hover { color: var(--text); }

/* ══ RESPONSIVE ══════════════════════════════════════════════
   860px  tablet landscape
   680px  tablet portrait / large phone
   480px  phone
   360px  small phone
   ═══════════════════════════════════════════════════════════ */

/* ── Menu mobile toggle ──────────────────────────────────── */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 860px ───────────────────────────────────────────────── */
@media (max-width: 860px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat        { border-bottom: 1px solid rgba(255,255,255,.10); }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-bottom: none; }
  .stat:nth-child(even) { border-right: none; }

  .about__grid  { grid-template-columns: 1fr; gap: 40px; }
  .about__img   { order: -1; }
  .about__img img { aspect-ratio: 1/1; object-position: top center; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 36px; }

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

/* ── 680px ───────────────────────────────────────────────── */
@media (max-width: 680px) {
  .header__inner { gap: 0; justify-content: space-between; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: static; height: auto; right: auto; top: auto; z-index: auto;
  }
  .nav {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 0; position: fixed; inset: 68px 0 0;
    background: rgba(7,8,15,.97);
    padding: 28px 24px;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    z-index: 200; overflow-y: auto;
  }
  .nav.is-open   { transform: translateX(0); }
  .nav li        { width: 100%; }
  .nav a {
    display: block; font-size: 22px;
    font-family: var(--ff-display); font-weight: 700;
    text-transform: uppercase; color: var(--text);
    padding: 14px 0; border-bottom: 1px solid var(--line);
    transition: color .15s;
  }
  .nav a:hover    { color: var(--energy-lt); }
  .nav__cta       { margin-top: 20px; border-bottom: none; }
  .nav__cta .btn  { width: 100%; justify-content: center; min-height: 52px; font-size: 16px; }

  .hero {
    padding-bottom: 72px;
    background:
      linear-gradient(to top, rgba(7,8,15,.99) 0%, rgba(7,8,15,.90) 28%, rgba(7,8,15,.30) 55%, rgba(7,8,15,.05) 100%),
      url('../img/hero.png') 72% 10% / cover no-repeat;
    background-color: var(--bg);
    align-items: flex-end;
  }
  .hero__content { max-width: 100%; }
  .hero__scroll  { display: none; }

  .section       { padding: 72px 0; }
  .section__header { margin-bottom: 44px; }

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

  .includes      { padding: 28px 20px; }
  .includes__grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .includes__icon { width: 44px; height: 44px; }
  .includes__item span { font-size: 10px; }

  .plan-row { flex-wrap: wrap; padding: 20px 16px; gap: 12px; }
  .plan-row__icon { width: 48px; height: 48px; }
  .plan-row__info { flex: 1 1 calc(100% - 64px); }
  .plan-row__info strong { font-size: 18px; }
  .plan-row__price { flex: 1 1 100%; display: flex; align-items: center; gap: 16px; }
  .plan-row__price strong { font-size: 36px; }
  .plan-row .btn  { flex: 1 1 100%; justify-content: center; min-height: 48px; }
  .plan-notes p   { font-size: 12px; }

  .cta-section   { padding: 80px 0; }
  .cta-actions   { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ── 480px ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container     { width: calc(100% - 32px); }

  h1 { font-size: 64px; }
  .hero__tagline { font-size: 20px; }
  .hero__sub { font-size: 15px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 16px; }
  .stat strong { font-size: 44px; }

  .includes__grid { grid-template-columns: repeat(2, 1fr); }
  .plan-list { gap: 8px; }
  .plan-row__badge { font-size: 9px; }

  .tools__grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer__col:first-child { grid-column: 1 / -1; text-align: center; }
  .footer__col--end { grid-column: 1 / -1; text-align: center; }
  .footer__copy  { margin-top: 12px; font-size: 12px; }

  .btn { min-height: 48px; font-size: 14px; }
}

/* ── 360px ───────────────────────────────────────────────── */
@media (max-width: 360px) {
  h1 { font-size: 52px; }
  h2 { font-size: 36px; }
  .brand img { width: 160px; height: 40px; }
  .includes__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid    { grid-template-columns: 1fr 1fr; }
}

/* ── Instagram responsive ────────────────────────────────── */
@media (max-width: 600px) {
  .instagram-showcase { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .instagram-card__overlay { display: none; }
  .instagram-empty { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .instagram-card__type { top: 6px; right: 6px; width: 24px; height: 24px; }
}

/* ── Acessibilidade ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}
