﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;0,800;0,900;1,800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0e0e0e;
  color: #d0d0d0;
  line-height: 1.7;
  font-size: 17px;
}

:root {
  --bg: #0e0e0e;
  --bg-card: #161616;
  --bg-alt: #121212;
  --bg-elevated: #1c1c1c;
  --bg-gold: #100800;
  --border: #242424;
  --border-light: #333;
  --text: #d0d0d0;
  --muted: #555;
  --muted-light: #888;
  --accent: #F97316;
  --accent-dark: #EA580C;
  --accent-glow: rgba(249, 115, 22, 0.12);
  --cta: #22C55E;
  --cta-dark: #16A34A;
  --danger: #DC2626;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

h1, h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
}
h3, h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; line-height: 1.3; color: #fff; }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.1rem; }
p { margin-bottom: 1.1rem; color: #999; line-height: 1.85; }
p:last-child { margin-bottom: 0; }
strong { color: #e0e0e0; font-weight: 700; }

.container { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
section { padding: 108px 0; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 32px;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
nav.nav-centered {
  justify-content: center;
  padding: 16px 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}
@media (min-width: 769px) {
  .nav-logo img,
  nav.nav-centered .nav-logo img {
    height: 70px;
  }
}
.nav-cta {
  font-size: 0.78rem; font-weight: 700;
  background: var(--cta); color: #0a0a0a;
  padding: 10px 22px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: var(--cta-dark);
  box-shadow: 0 0 20px rgba(34,197,94,0.3);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 80px;
  background: #0e0e0e;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -400px; left: -400px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(249,115,22,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  padding: 100px 64px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative; z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
}
.hero-image { position: relative; }
.hero-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  object-position: top;
  max-height: 600px;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  background: linear-gradient(135deg, rgba(249,115,22,0.25) 0%, transparent 50%);
  z-index: 0;
}
.hero-image img { position: relative; z-index: 1; }

.hero-tag {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 24px; display: block;
}
.hero h1 { margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 900; }
.hero-sub { font-size: 1.05rem; color: #888; margin-bottom: 48px; max-width: 520px; line-height: 1.8; }

/* BOTÃO VERDE — Destruindo Metas style */
.btn {
  display: block; width: 100%;
  background: var(--cta); color: #0a0a0a;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800; font-size: 1rem;
  padding: 20px 40px;
  border-radius: 50px;
  text-align: center; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: 480px;
}
.btn:hover {
  background: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(34,197,94,0.3);
}
.micro {
  display: block; font-size: 0.76rem; color: var(--muted);
  margin-top: 14px; text-align: center; max-width: 480px;
  letter-spacing: 0.2px;
}

/* SECTIONS */
.section-alt { background: var(--bg-alt); }
.section-title { margin-bottom: 56px; }
.section-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px; display: block;
}

/* PROSE */
.prose p { font-size: 1.06rem; line-height: 1.9; color: #999; }
.prose p strong { color: #e0e0e0; }

/* PROBLEM GRID (5 cards com × e fundo — Destruindo Metas style) */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.problem-card {
  background: #111;
  border: 1px solid rgba(220,38,38,0.35);
  border-radius: 12px;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.problem-card:hover {
  border-color: rgba(220,38,38,0.65);
  transform: translateY(-2px);
}
.problem-img {
  width: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}
.problem-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: 0;
}
.problem-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
  z-index: 1;
}
.problem-img-1::before { background-image: url('../images/prob-1.jpg'); }
.problem-img-2::before { background-image: url('../images/prob-2.jpg'); }
.problem-img-3::before { background-image: url('../images/prob-3.jpg'); }
.problem-img-4::before { background-image: url('../images/prob-4.jpg'); }
.problem-img-5::before { background-image: url('../images/prob-5.jpg'); }
.problem-x {
  position: relative;
  z-index: 2;
  color: var(--danger);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}
.problem-card p { font-size: 0.82rem; color: #ccc; line-height: 1.6; margin: 0; padding: 16px; }
.problem-card strong { color: #fff; }

/* URGENCY SECTION (gradiente vermelho escuro) */
.urgency-section {
  background: linear-gradient(160deg, #280000 0%, #150000 50%, #0e0e0e 100%);
  padding: 88px 0;
  text-align: center;
}
.urgency-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  max-width: 700px;
  margin: 0 auto 20px;
  color: #fff;
  letter-spacing: -0.02em;
}
.urgency-section p {
  color: #aaa;
  max-width: 580px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.75;
}
.urgency-section .btn { margin: 0 auto; }

/* FEATURE GRID 2×2 (Destruindo Metas style) */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.25s, transform 0.2s;
}
.feature-card:hover {
  border-color: rgba(249,115,22,0.45);
  transform: translateY(-2px);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card-text h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.feature-card-text p { color: #888; font-size: 0.88rem; margin: 0; line-height: 1.65; }

/* ANTES/DEPOIS (headers coloridos — Destruindo Metas style) */
.antes-depois-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.ad-header {
  padding: 22px 28px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #fff;
}
.ad-header small {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  opacity: 0.75;
  margin-top: 4px;
  font-family: 'DM Sans', sans-serif;
}
.ad-header-antes { background: #991B1B; }
.ad-header-depois { background: #166534; }
.ad-row {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.55;
}
.ad-row:last-child { border-bottom: none; }
.ad-row-antes { background: #0f0f0f; color: #777; }
.ad-row-depois { background: #070f07; color: #ccc; }
.ad-row-depois strong { color: #4ADE80; font-weight: 700; }

/* AUTHORITY BOX (borda dourada — Destruindo Metas style) */
.authority-box {
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 16px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: center;
  background: var(--bg-card);
}
.authority-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.authority-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 28px;
  line-height: 1.15;
}
.authority-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.authority-checks li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: #bbb;
  position: relative;
  line-height: 1.55;
}
.authority-checks li:last-child { border-bottom: none; }
.authority-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.authority-checks li strong { color: #fff; }
.authority-img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  max-height: 380px;
}

/* BENEFIT CARDS */
.benefit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 12px;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.benefit:hover {
  border-color: rgba(249,115,22,0.3);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}
.benefit-tag {
  font-size: 0.72rem; color: var(--muted);
  margin-bottom: 10px; display: block;
  letter-spacing: 0.5px;
}
.benefit h3 { color: var(--accent); margin-bottom: 10px; font-size: 1.1rem; }
.benefit p { color: #888; font-size: 0.95rem; margin: 0; line-height: 1.75; }

/* VALUE TABLE */
.value-table { width: 100%; border-collapse: collapse; margin: 40px 0; }
.value-table th, .value-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.value-table th {
  color: var(--muted); font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 2px;
}
.value-table td:last-child { text-align: right; color: var(--accent); font-weight: 600; }
.value-table .row-total td {
  font-weight: 800; color: #fff; font-size: 1rem;
  border-top: 1px solid var(--border-light);
  border-bottom: none; padding-top: 20px;
}
.value-table .row-price td {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; color: var(--accent);
  font-size: 2.2rem; border: none;
  padding-top: 8px; letter-spacing: -0.03em;
}
.value-table .row-price td:last-child { font-size: 2.2rem; }

/* TESTIMONIALS */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  margin-bottom: 12px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: 'Montserrat', sans-serif;
  font-size: 8rem; font-weight: 900;
  color: var(--accent); opacity: 0.07;
  position: absolute; top: -4px; left: 28px;
  line-height: 1; pointer-events: none;
}
.testimonial blockquote {
  font-size: 1rem; color: #c8c8c8;
  font-style: normal; line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial cite {
  font-size: 0.78rem; color: var(--muted);
  font-style: normal; letter-spacing: 0.5px;
}

/* TESTIMONIAL REEL CARDS */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-reel {
  text-decoration: none;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.testimonial-reel:hover {
  transform: translateY(-3px);
  border-color: rgba(249,115,22,0.5);
}
.testimonial-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.testimonial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-btn {
  position: absolute;
  width: 52px; height: 52px;
  background: rgba(0,0,0,0.72);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  padding-left: 4px;
  pointer-events: none;
  transition: background 0.2s;
}
.testimonial-reel:hover .play-btn {
  background: rgba(249,115,22,0.85);
  border-color: transparent;
}
.ig-badge {
  position: absolute;
  bottom: 10px; right: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex; align-items: center; gap: 5px;
  pointer-events: none;
}
.testimonial-body {
  padding: 24px 28px 28px;
  flex: 1;
}
.testimonial-reel blockquote {
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq { border-bottom: 1px solid var(--border); padding: 28px 0; }
.faq h3 { font-size: 1rem; color: #e0e0e0; font-weight: 600; margin-bottom: 12px; }
.faq p { color: #888; font-size: 0.95rem; margin: 0; line-height: 1.75; }

/* QUALIFIER */
.qualifier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
.qualifier-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
}
.qualifier-box.yes {
  border-color: rgba(249,115,22,0.25);
  background: var(--bg-gold);
}
.qualifier-box h3 {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 4px; margin-bottom: 24px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
}
.qualifier-box.yes h3 { color: var(--accent); }
.qualifier-box.no h3 { color: var(--muted); }
.qualifier-box li {
  color: #888; font-size: 0.9rem;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--border);
  position: relative; line-height: 1.55;
}
.qualifier-box li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
.qualifier-box.no li::before { content: '×'; color: #3a3a3a; font-size: 1.1rem; }
.qualifier-box li:last-child { border-bottom: none; }

/* GUARANTEE */
.guarantee-box {
  background: var(--bg-gold);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 20px;
  padding: 64px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.guarantee-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(249,115,22,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.guarantee-box h2 { color: var(--accent); margin-bottom: 20px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.guarantee-box p { color: #999; max-width: 480px; margin: 0 auto; font-size: 1rem; }

/* BIO */
.bio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.bio-img { border-radius: 16px; width: 100%; }
.bio-text h2 { margin-bottom: 24px; font-size: clamp(2rem, 4vw, 2.8rem); }

/* CTA FINAL */
.cta-final {
  text-align: center; padding: 128px 32px;
  background: var(--bg-alt);
  position: relative; overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final h2 { max-width: 700px; margin: 0 auto 56px; position: relative; }
.cta-final .btn { margin: 0 auto; position: relative; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
footer a { color: var(--accent); }

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  /* último card (5°) centralizado quando sobra sozinho em 3 colunas */
  .problem-card-last:nth-child(3n+1) { grid-column: 2 / 3; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  /* texto primeiro, imagem depois no mobile */
  .hero-image { order: 2; max-width: 400px; margin: 0 auto; }
  .hero-content { order: 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .authority-box { grid-template-columns: 1fr; padding: 36px 28px; }
  .authority-img { max-width: 240px; margin: 0 auto; order: -1; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .qualifier-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; gap: 36px; }
  .bio-img { max-width: 220px; margin: 0 auto; }
  nav { padding: 16px 20px; }
  .nav-cta { padding: 8px 18px; font-size: 0.76rem; }
  .benefit { padding: 28px; }
  .guarantee-box { padding: 44px 28px; }
  .cta-final { padding: 88px 24px; }
  .antes-depois-split { grid-template-columns: 1fr; }
  /* 2 colunas no mobile para os cards */
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-card-last { grid-column: 1 / -1; max-width: calc(50% - 6px); margin: 0 auto; }
  .problem-img { min-height: 130px; }
}
@media (max-width: 400px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card-last { grid-column: auto; max-width: 100%; margin: 0; }
}
