/* ============================================================
   WILSON AZEVEDO · MÉTODO WA
   Identidade: preto (autoridade) + dourado (conquista) + branco
   Mobile-first · Oswald (display) + Inter (texto)
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg-2: #0f0f11;
  --card: #141417;
  --card-2: #18181c;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #e3b341;
  --gold-2: #f2ca5c;
  --gold-deep: #9c7a1e;
  --text: #f5f4f0;
  --muted: #a6a6af;
  --green: #25d366;
  --danger: #e05e5e;
  --radius: 18px;
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
  --glow-gold: 0 10px 34px rgba(227, 179, 65, 0.32);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

::selection { background: var(--gold); color: #0a0a0b; }

img { max-width: 100%; height: auto; display: block; }

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

ul, ol { list-style: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container {
  width: min(100% - 2.5rem, 1160px);
  margin-inline: auto;
}

/* ---------- Tipografia ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.1rem, 5.4vw + 1rem, 4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw + 0.8rem, 2.9rem); max-width: 21ch; }
h3 { font-size: clamp(1.15rem, 1.4vw + 0.8rem, 1.5rem); }

h1 em, h2 em {
  font-style: normal;
  color: var(--gold);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section { padding-block: clamp(4rem, 9vw, 7rem); position: relative; }
.section-sub { color: var(--muted); max-width: 54ch; margin-top: 1rem; }

.micro { font-size: 0.82rem; color: var(--muted); margin-top: 0.7rem; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: #0c0a04;
  box-shadow: var(--glow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(227, 179, 65, 0.45); }
.btn-gold:active { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.btn-lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn-sm { padding: 0.62rem 1.25rem; font-size: 0.82rem; }
.btn-block { width: 100%; }

.link-btn {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 0.9rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.header.scrolled {
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--line);
  padding-block: 0.6rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo { display: inline-flex; align-items: center; gap: 0.7rem; }
.logo-img {
  width: 58px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.35)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text);
}
.logo-text b { color: var(--gold); font-weight: 700; }

.nav { display: none; }

.header-cta { display: none; }

.menu-toggle {
  display: grid;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile aberto */
.nav.open {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, 0.97);
  backdrop-filter: blur(10px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 90;
}
.nav.open a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav a { position: relative; transition: color 0.25s ease; }
.nav a:hover { color: var(--gold); }

/* ---------- Hero cinematográfico ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(6.5rem, 14vw, 9rem);
  padding-bottom: clamp(4rem, 9vh, 6.5rem);
  overflow: hidden;
}

.hero picture { display: contents; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: grayscale(100%) contrast(1.06) brightness(0.85);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom,
      rgba(10, 10, 11, 0.88) 0%,
      rgba(10, 10, 11, 0.35) 24%,
      rgba(10, 10, 11, 0.18) 46%,
      rgba(10, 10, 11, 0.78) 74%,
      #0a0a0b 100%),
    radial-gradient(ellipse 120% 80% at 50% 38%, transparent 42%, rgba(10, 10, 11, 0.6) 100%),
    radial-gradient(ellipse 60% 40% at 50% 96%, rgba(227, 179, 65, 0.07) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero h1 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: clamp(2.3rem, 5.2vw + 1rem, 4.4rem);
  max-width: 17ch;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(14, 14, 16, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.5rem 1.1rem 0.5rem 0.55rem;
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-md);
}
.hero-chip p {
  font-size: 0.78rem;
  line-height: 1.25;
  color: var(--muted);
  display: grid;
}
.hero-chip strong { color: var(--text); font-size: 0.84rem; }

.chip-avatars { display: flex; }
.chip-avatars i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background-size: cover;
  filter: grayscale(100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.chip-avatars i:first-child { background-image: url("../assets/img/wilson-treino-1.jpg"); background-position: 28% 20%; }
.chip-avatars i:last-child { background-image: url("../assets/img/wilson-hero-coaching.jpg"); background-position: 50% 12%; margin-left: -10px; }

.hero-sub {
  color: rgba(245, 244, 240, 0.72);
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.15rem);
  max-width: 50ch;
  margin-top: 1.4rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.hero-sub strong { color: var(--text); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.4rem;
}
.hero-badges li {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(14, 14, 16, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.hero-badges strong { color: var(--gold); font-weight: 600; }

/* Chips reutilizados na seção do app */
.hero-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(20, 20, 23, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted);
  max-width: 220px;
}
.hero-card strong { color: var(--text); font-size: 0.86rem; }

.hero-card .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
  flex-shrink: 0;
}
.hero-card .check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #0c0a04;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-slow { animation: floatY 5s ease-in-out infinite; }
.float-slower { animation: floatY 6.5s ease-in-out 0.8s infinite; }

.hero-scroll {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--line);
  border-radius: 999px;
}
.hero-scroll span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--gold);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: 0.95rem;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track i { color: var(--gold); font-style: normal; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Dor ---------- */
.pain-list {
  margin-top: 2.2rem;
  display: grid;
  gap: 0.8rem;
  max-width: 640px;
}
.pain-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  color: var(--muted);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pain-list li:hover { border-color: rgba(224, 94, 94, 0.4); transform: translateX(4px); }
.pain-list li span {
  color: var(--danger);
  font-weight: 700;
  margin-top: 0.1rem;
}

.pain-agitate {
  margin-top: 2.4rem;
  max-width: 640px;
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  display: grid;
  gap: 1rem;
}
.pain-agitate p { color: var(--muted); }
.pain-turn { font-size: 1.12rem; color: var(--text) !important; }
.pain-turn strong { color: var(--gold); }

/* ---------- Com x Sem método ---------- */
.compare { background: var(--bg-2); }
.compare-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.6rem;
}

.compare-card {
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--line);
  position: relative;
}
.compare-card h3 { margin-bottom: 1.2rem; }
.compare-card ul { display: grid; gap: 0.85rem; }
.compare-card li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.96rem; }
.compare-card li span { font-weight: 700; margin-top: 0.05rem; }

.compare-no { background: var(--card); color: var(--muted); }
.compare-no h3 { color: var(--muted); }
.compare-no li span { color: var(--danger); }

.compare-yes {
  background: linear-gradient(160deg, rgba(227, 179, 65, 0.1), rgba(227, 179, 65, 0.02) 55%), var(--card-2);
  border: 1px solid rgba(227, 179, 65, 0.45);
  box-shadow: var(--glow-gold);
}
.compare-yes li span { color: var(--gold); }

.compare-tag {
  position: absolute;
  top: -0.85rem;
  right: 1.4rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #0c0a04;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

/* ---------- Públicos ---------- */
.gold-text,
.hero-sub strong.gold-text { color: var(--gold); }

.audience-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.audience-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.audience-card:hover {
  border-color: rgba(227, 179, 65, 0.45);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.audience-card figure { height: 230px; overflow: hidden; }
.audience-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.audience-card:hover figure img { filter: grayscale(0%); transform: scale(1.05); }
.audience-card h3 { padding: 1.3rem 1.5rem 0.4rem; }
.audience-card > p { padding: 0 1.5rem 1.6rem; color: var(--muted); font-size: 0.95rem; }

/* Sem mouse (celular/tablet): revela a cor sozinho ao entrar na dobra */
@media (hover: none) {
  .audience-card.in-view figure img { filter: grayscale(0%); transform: scale(1.02); }
}

/* ---------- Método (passos) ---------- */
.steps {
  margin-top: 3rem;
  display: grid;
  gap: 1.4rem;
}

.step {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  border-color: rgba(227, 179, 65, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  flex-shrink: 0;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Alinhamento de partida ---------- */
.pact { background: var(--bg-2); overflow: hidden; }

.pact-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.6rem;
}

.pact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pact-card:hover { transform: translateY(-4px); }

.pact-card h3 {
  display: inline-block;
  background: linear-gradient(135deg, #1c1c20, #0d0d0f);
  border: 1px solid rgba(227, 179, 65, 0.4);
  color: var(--gold);
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.6rem;
}

.pact-card ul { display: grid; gap: 1.3rem; }
.pact-card li { display: flex; gap: 1rem; align-items: flex-start; }
.pact-card li strong { display: block; font-size: 0.98rem; margin-bottom: 0.15rem; }
.pact-card li p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

.pact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #0c0a04;
  box-shadow: 0 6px 18px rgba(227, 179, 65, 0.28);
}
.pact-icon svg { width: 22px; height: 22px; }

.pact-student { border-color: rgba(227, 179, 65, 0.28); }

.pact-seal {
  margin: 2.8rem auto 0;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 2px dashed rgba(227, 179, 65, 0.6);
  border-radius: 999px;
  padding: 0.9rem 2rem;
  transform: rotate(-3deg);
  background: rgba(227, 179, 65, 0.05);
}
.seal-text {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--gold);
}
.seal-diamond { color: var(--gold); display: grid; place-items: center; }
.seal-diamond svg { width: 30px; height: 30px; }

/* ---------- O App ---------- */
.app { overflow: hidden; }
.app-grid { display: grid; gap: 3.5rem; align-items: center; }

.app-features { margin-top: 2rem; display: grid; gap: 1.2rem; margin-bottom: 2.2rem; }
.app-features li { display: flex; gap: 1rem; align-items: flex-start; }
.app-features strong { display: block; font-size: 0.98rem; }
.app-features p { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

.app-feature-num {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #0c0a04;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.app-media {
  position: relative;
  display: flex;
  justify-content: center;
  padding-block: 1.5rem;
}

.phone {
  width: min(78vw, 300px);
  background: #0d0d10;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px;
  padding: 0.8rem;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(227, 179, 65, 0.08);
  position: relative;
}
.phone-notch {
  width: 38%;
  height: 22px;
  background: #0d0d10;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
}
.phone-screen {
  background: linear-gradient(180deg, #131316, #0e0e11);
  border-radius: 28px;
  border: 1px solid var(--line);
  padding: 2.4rem 0.95rem 1.1rem;
  display: grid;
  gap: 0.7rem;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}
.phone-day {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
}
.phone-week { font-size: 0.68rem; color: var(--gold); }

.phone-exercise {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  display: grid;
  gap: 0.3rem;
}
.phone-exercise.dim { opacity: 0.55; }
.phone-ex-top { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.phone-ex-top strong { font-size: 0.8rem; }
.phone-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #0c0a04;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
}
.phone-ex-meta { font-size: 0.68rem; color: var(--muted); }

.phone-load {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
  font-size: 0.68rem;
  color: var(--muted);
}
.phone-load b {
  background: rgba(227, 179, 65, 0.12);
  border: 1px solid rgba(227, 179, 65, 0.4);
  color: var(--gold);
  border-radius: 8px;
  padding: 0.15rem 0.5rem;
  font-size: 0.72rem;
}
.phone-load i {
  font-style: normal;
  color: var(--green);
  font-weight: 600;
  font-size: 0.68rem;
}

.phone-video {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #0c0a04;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  border-radius: 999px;
  padding: 0.65rem 0.8rem;
  margin-top: 0.2rem;
}
.phone-video-icon { display: grid; place-items: center; }
.phone-video-icon svg { width: 16px; height: 16px; }

.app-chip-1 { top: 10%; left: 0; }
.app-chip-2 { bottom: 8%; right: 0; }

/* ---------- Oferta ---------- */
.offer { background: var(--bg-2); }
.offer-card {
  margin-top: 2.6rem;
  max-width: 620px;
  background: linear-gradient(160deg, rgba(227, 179, 65, 0.1), rgba(227, 179, 65, 0.02) 55%), var(--card-2);
  border: 1px solid rgba(227, 179, 65, 0.45);
  border-radius: var(--radius);
  box-shadow: var(--glow-gold);
  padding: 2.2rem 1.8rem;
  position: relative;
  display: grid;
  gap: 1.4rem;
  justify-items: start;
}
.offer-list { display: grid; gap: 0.75rem; }
.offer-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.96rem; }
.offer-list li span { color: var(--gold); font-weight: 700; }

/* ---------- Galeria (carrossel automático) ---------- */
.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 2.4rem 1.25rem 1rem;
  cursor: grab;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.dragging { cursor: grabbing; }

.gallery-track figure {
  position: relative;
  flex: 0 0 auto;
  width: min(78vw, 330px);
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-track figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
  transition: transform 0.6s ease, filter 0.9s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.gallery-track figure.in-view img { filter: grayscale(0%) contrast(1); }
.gallery-track figure:hover img { transform: scale(1.05); filter: grayscale(0%); }

.gallery-track figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem 1.1rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
}

/* ---------- Depoimentos ---------- */
.testimonials {
  display: grid;
  gap: 1.3rem;
  margin-top: 2.6rem;
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  display: grid;
  gap: 0.9rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.testimonial:hover { border-color: rgba(227, 179, 65, 0.35); transform: translateY(-4px); }
.stars { color: var(--gold); letter-spacing: 0.18em; font-size: 0.95rem; }
.testimonial blockquote { color: var(--muted); font-size: 0.96rem; }
.testimonial footer {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--gold);
}

/* ---------- Slogan em destaque ---------- */
.statement {
  padding-block: clamp(5rem, 13vw, 9.5rem);
  text-align: center;
  background:
    radial-gradient(55% 65% at 50% 50%, rgba(227, 179, 65, 0.08) 0%, transparent 72%),
    var(--bg);
  overflow: hidden;
}
.statement-text {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 5.6vw + 0.6rem, 5rem);
  max-width: 16ch;
  margin-inline: auto;
}
.statement-text em {
  font-style: normal;
  color: var(--gold);
}
.statement-sub {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
}

/* ---------- Sobre ---------- */
.about { background: var(--bg-2); }
.about-grid { display: grid; gap: 2.6rem; align-items: center; }

.about-photo {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
  width: 100%;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 16%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  filter: grayscale(100%) contrast(1.05);
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 1px solid rgba(227, 179, 65, 0.4);
  border-radius: var(--radius);
}
.about-quote {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -1.1rem;
  transform: translateX(-50%);
  width: max-content;
  max-width: 90%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-deep));
  color: #0c0a04;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  box-shadow: var(--glow-gold);
  text-align: center;
}

.about-text { display: grid; gap: 1rem; margin-top: 1.4rem; color: var(--muted); }
.about-text p strong { color: var(--text); }

.about-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-block: 1.8rem;
}
.about-creds li {
  font-size: 0.8rem;
  color: var(--gold);
  border: 1px solid rgba(227, 179, 65, 0.35);
  background: rgba(227, 179, 65, 0.06);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

/* ---------- FAQ ---------- */
.faq-container { max-width: 760px; }
.faq-list { margin-top: 2.4rem; display: grid; gap: 0.9rem; }

.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-list details[open] { border-color: rgba(227, 179, 65, 0.4); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  font-weight: 600;
  font-size: 0.98rem;
}
.faq-list summary::-webkit-details-marker { display: none; }

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-answer { padding: 0 1.3rem 1.25rem; }
.faq-answer p { color: var(--muted); font-size: 0.95rem; }
details[open] .faq-answer { animation: fadeSlideIn 0.35s ease; }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* ---------- CTA pós-FAQ (WhatsApp) ---------- */
.faq-cta {
  margin-top: 2.6rem;
  background: linear-gradient(160deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.02) 60%), var(--card);
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  text-align: center;
}
.faq-cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
}
.faq-cta-sub { color: var(--muted); font-size: 0.95rem; }
.faq-cta .btn { margin-top: 1rem; }

.btn-whats {
  background: linear-gradient(135deg, #2ee06f 0%, #25d366 45%, #179e4c 100%);
  color: #04170b;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}
.btn-whats:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(37, 211, 102, 0.42); }

/* ---------- CTA final + quiz ---------- */
.final-cta {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(227, 179, 65, 0.12) 0%, transparent 70%),
    var(--bg);
}
.final-grid { display: grid; gap: 3rem; align-items: center; }

.final-content p { color: var(--muted); margin-top: 1.2rem; max-width: 52ch; }

.final-points { margin-top: 1.8rem; display: grid; gap: 0.7rem; }
.final-points li { display: flex; gap: 0.7rem; color: var(--text); font-size: 0.96rem; }
.final-points span { color: var(--gold); font-weight: 700; }

/* Quiz */
.quiz {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.quiz-top { margin-bottom: 1.6rem; }
.quiz-step-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.quiz-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.quiz-progress span {
  display: block;
  height: 100%;
  width: 25%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-2));
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeSlideIn 0.4s ease; }
.quiz-step h3 { font-size: 1.3rem; margin-bottom: 1.3rem; }

.quiz-options { display: grid; gap: 0.7rem; }
.quiz-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 1rem 1.15rem;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.quiz-option i { font-style: normal; font-size: 1.1rem; }
.quiz-option:hover {
  border-color: rgba(227, 179, 65, 0.5);
  transform: translateX(4px);
}
.quiz-option.selected {
  border-color: var(--gold);
  background: rgba(227, 179, 65, 0.1);
  box-shadow: 0 0 0 3px rgba(227, 179, 65, 0.15);
}

.quiz-back {
  margin-top: 1.4rem;
  background: none;
  border: none;
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  transition: color 0.25s ease;
}
.quiz-back:hover { color: var(--gold); }

.quiz form { display: grid; gap: 0.55rem; }

.quiz label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 0.6rem;
}

.quiz input[type="text"],
.quiz input[type="tel"] {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font: inherit;
  padding: 0.85rem 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.quiz input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227, 179, 65, 0.18);
}
.quiz input.invalid { border-color: var(--danger); }

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}
.consent input {
  margin-top: 0.2rem;
  width: 17px;
  height: 17px;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}

.quiz form .btn { margin-top: 1.2rem; }
.form-error { color: var(--danger); font-size: 0.85rem; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding-top: 3.5rem;
}
.footer-grid { display: grid; gap: 2.2rem; }

.footer-logo {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3));
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 1.2rem; max-width: 36ch; }

.footer-nav { display: grid; gap: 0.7rem; justify-items: start; }
.footer-nav a, .footer-nav .link-btn {
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-nav a:hover { color: var(--gold); }

.footer-contact { display: grid; gap: 0.7rem; align-content: start; }
.footer-link { color: var(--muted); font-size: 0.92rem; transition: color 0.25s ease; }
.footer-link:hover { color: var(--gold); }
.footer-contact p { color: var(--muted); font-size: 0.92rem; }

.footer-bottom {
  margin-top: 3rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.4rem;
}
.footer-bottom p { color: #6d6d76; font-size: 0.78rem; }

/* ---------- WhatsApp flutuante ---------- */
.whats-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Modal (LGPD) ---------- */
.modal { position: fixed; inset: 0; z-index: 150; display: grid; place-items: center; padding: 1.25rem; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(4px); }
.modal-box {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 2rem 1.7rem;
  display: grid;
  gap: 0.9rem;
  box-shadow: var(--shadow-lg);
  animation: fadeSlideIn 0.3s ease;
}
.modal-box p { color: var(--muted); font-size: 0.92rem; }
.modal-box strong { color: var(--text); }
.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--gold); }

/* ---------- Cursor customizado (somente desktop com mouse) ---------- */
.cursor-dot,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(227, 179, 65, 0.55);
}

.cursor-ring {
  z-index: 299;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1.5px solid rgba(227, 179, 65, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease,
    border-color 0.3s ease, opacity 0.3s ease;
}

.cursor-label {
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}

.cursor-ring.is-link {
  width: 58px;
  height: 58px;
  background: rgba(227, 179, 65, 0.1);
  border-color: var(--gold);
}

.cursor-ring.is-drag {
  width: 78px;
  height: 78px;
  background: rgba(10, 10, 11, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-color: var(--gold);
}
.cursor-ring.is-drag .cursor-label { opacity: 1; }

@media (hover: hover) and (pointer: fine) {
  html *:not(input):not(textarea):not(select) { cursor: none !important; }
  .cursor-dot { display: block; }
  .cursor-ring { display: flex; }
}

/* ---------- Animações de scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   DESKTOP (min-width: 900px)
   ============================================================ */
@media (min-width: 900px) {
  .nav {
    display: flex;
    gap: 2rem;
  }
  .nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
  }
  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
  }
  .nav a:hover { color: var(--text); }
  .nav a:hover::after { width: 100%; }

  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }

  .hero { align-items: center; padding-bottom: clamp(5rem, 12vh, 8rem); }
  .hero-bg { object-position: 42% 28%; }
  .hero-content { align-items: center; text-align: center; margin-top: 8vh; }
  .hero h1 { max-width: 19ch; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas, .hero-badges { justify-content: center; }
  .hero-chip {
    position: absolute;
    right: 0;
    bottom: -3.5rem;
    margin-bottom: 0;
  }
  .hero-scroll { display: block; }

  .compare-grid { grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
  .compare-no { transform: rotate(-0.6deg); }
  .compare-yes { transform: rotate(0.6deg) scale(1.02); }

  .steps { grid-template-columns: 1fr 1fr; gap: 1.6rem; }

  .pact-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .audience-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .audience-card figure { height: 280px; }

  .app-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; }
  .app-media { justify-self: center; }
  .app-chip-1 { left: -8%; }
  .app-chip-2 { right: -8%; }

  .offer-card { padding: 2.6rem 2.4rem; }

  .gallery-track { padding-inline: max(1.25rem, calc((100vw - 1160px) / 2)); }
  .gallery-track figure { width: 360px; height: 470px; }

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

  .about-grid { grid-template-columns: 0.9fr 1.1fr; gap: 5rem; }
  .about-photo { margin-inline: 0; }

  .final-grid { grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
  .quiz { padding: 2.4rem 2.2rem; }

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

  .whats-float { right: 1.6rem; bottom: 1.6rem; }
}

/* ---------- Acessibilidade: menos movimento ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track,
  .float-slow,
  .float-slower,
  .hero-scroll span,
  .whats-float::before { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
