/* ============================================================
   VENDA EBOOKS NOS EUA — Landing Page
   Estilos principais
   Edite as variáveis em :root para alterar cores globalmente.
   ============================================================ */

/* ---- Variáveis de cor e tipografia ---- */
:root {
  --color-bg: #07111f;
  --color-bg-soft: #0d1b2e;
  --color-bg-card: #102238;
  --color-green: #31d07c;
  --color-green-dark: #123f2b;
  --color-white: #ffffff;
  --color-muted: #a9b5c7;
  --color-border: rgba(49, 208, 124, 0.28);
  --color-red-usa: #e63946;
  --color-blue-usa: #1d6de3;

  --font-main: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.45);
  --glow-green: 0 0 18px rgba(49, 208, 124, 0.22);
  --glow-red: 0 0 22px rgba(230, 57, 70, 0.28);
}

/* ---- Reset e base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-green);
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover { opacity: 0.82; }

ul { list-style: none; }

/* ---- Utilitários ---- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background-color: var(--color-bg-soft);
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 640px;
  margin-bottom: 48px;
}

.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* ---- Efeito EUA (E vermelho, U branco, A azul) ---- */
.usa-word { font-weight: inherit; }
.usa-red   { color: var(--color-red-usa); }
.usa-white { color: var(--color-white); }
.usa-blue  { color: var(--color-blue-usa); }

/* ---- Botões ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn:focus-visible {
  outline: 3px solid var(--color-green);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-green), #22b865);
  color: #051a10;
  box-shadow: 0 4px 24px rgba(49, 208, 124, 0.38);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(49, 208, 124, 0.5);
  opacity: 1;
}

.btn-secondary {
  background: transparent;
  color: var(--color-green);
  border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
  background: rgba(49, 208, 124, 0.08);
  border-color: var(--color-green);
  transform: translateY(-2px);
  opacity: 1;
}

.btn-lg {
  padding: 18px 42px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ---- Stars ---- */
.stars {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #f5c518;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.stars i {
  color: inherit;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: linear-gradient(90deg, var(--color-green-dark), #0d2919);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar__text {
  font-size: 0.88rem;
  color: var(--color-muted);
}

.top-bar__text strong {
  color: var(--color-white);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
}

/* Bandeira dos EUA em sobreposição */
.hero__flag-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__flag-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  opacity: 0.88;
  z-index: 2;
}

/* Listras da bandeira */
.flag-stripes {
  position: absolute;
  top: 0;
  right: -60px;
  width: 55%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  opacity: 0.08;
}

.flag-stripe {
  flex: 1;
}

.flag-stripe:nth-child(odd)  { background: var(--color-red-usa); }
.flag-stripe:nth-child(even) { background: var(--color-white); }

/* Cantão azul com estrelas */
.flag-canton {
  position: absolute;
  top: 0;
  right: calc(55% - 60px + (55% * 0.4));
  width: calc(55% * 0.4);
  height: calc(7 / 13 * 100%);
  background: var(--color-blue-usa);
  opacity: 0.06;
  z-index: 1;
}

/* Gradiente radial de fundo */
.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 70%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(49,208,124,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content { }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 28px;
  background: rgba(49, 208, 124, 0.06);
}

.hero__badge::before {
  content: '●';
  font-size: 0.5rem;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--color-white);
  margin-bottom: 22px;
}

.hero__title .highlight {
  color: var(--color-green);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--color-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__microcopy {
  font-size: 0.83rem;
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  line-height: 1.55;
  text-align: left;
}

.hero__microcopy-icon {
  flex-shrink: 0;
  margin-top: 0.12em;
}

.hero__microcopy-icon i {
  color: var(--color-green);
  font-size: 0.88rem;
}

.hero__microcopy-text {
  flex: 1;
  min-width: 0;
  max-width: 32rem;
}

/* Mockup do produto */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero__mockup-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse, rgba(49,208,124,0.18) 0%, transparent 70%);
  z-index: 0;
  border-radius: 50%;
}

.hero__mockup-link {
  display: block;
  position: relative;
  z-index: 1;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  outline-offset: 4px;
}

.hero__mockup-link:focus-visible {
  outline: 2px solid var(--color-green);
}

.hero__mockup {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card), var(--glow-green);
  overflow: hidden;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  background: var(--color-bg-card);
  transition: transform var(--transition);
}

.hero__mockup-link:hover .hero__mockup {
  transform: translateY(-6px) rotate(-1deg);
}

/* Placeholder da capa do produto */
.cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0d2236 0%, #07111f 60%, #0a1e32 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cover-placeholder__flag-stripes {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0.04;
  pointer-events: none;
}

.cover-placeholder__flag-stripes > div:nth-child(odd) { flex: 1; background: var(--color-red-usa); }
.cover-placeholder__flag-stripes > div:nth-child(even) { flex: 1; background: var(--color-white); }

.cover-placeholder__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
  border: 1px solid var(--color-border);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cover-placeholder__title {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.cover-placeholder__subtitle {
  font-size: 0.8rem;
  color: var(--color-muted);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.cover-placeholder__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 0 auto 16px;
}

.cover-placeholder__circle svg {
  width: 36px;
  height: 36px;
  fill: var(--color-green);
  opacity: 0.7;
}

.cover-placeholder__price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-green);
  position: relative;
  z-index: 1;
}

.cover-placeholder__note {
  font-size: 0.7rem;
  color: var(--color-muted);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

/* Comentário visual "substitua aqui" */
.img-placeholder-note {
  font-size: 0.7rem;
  color: var(--color-muted);
  text-align: center;
  margin-top: 8px;
  opacity: 0.6;
}

/* ============================================================
   SEÇÃO DOR / PROBLEMA
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pain__text p {
  color: var(--color-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.pain__text p strong {
  color: var(--color-white);
}

.pain__text p.pain__channels {
  color: var(--color-white);
}

.u-text-green {
  color: var(--color-green);
}

.pain__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: box-shadow var(--transition), transform var(--transition);
}

.pain__item:hover {
  box-shadow: var(--glow-green);
  transform: translateX(4px);
}

.pain__icon {
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}

.pain__icon i {
  color: var(--color-green);
  font-size: 1.25rem;
}

.pain__item-text {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.pain__item-text strong {
  display: block;
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 3px;
}

/* ============================================================
   SEÇÃO SOLUÇÃO
   ============================================================ */
.solution__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution__content p {
  color: var(--color-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.solution__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solution__point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--color-white);
}

.solution__point::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
}

.solution__visual {
  position: relative;
}

/* Caixinha decorativa */
.solution__box {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card), var(--glow-green);
}

.solution__box-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.solution__box-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution__box-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 0.97rem;
}

.solution__box-item .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-green-dark);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  flex-shrink: 0;
}

.solution__box-item .check i {
  font-size: 0.62rem;
  line-height: 1;
}

/* ============================================================
   SEÇÃO O QUE VOCÊ RECEBE
   ============================================================ */
.items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 960px;
  margin-inline: auto;
}

.item-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.item-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.item-card:hover {
  box-shadow: var(--glow-green), var(--shadow-card);
  transform: translateY(-4px);
  border-color: rgba(49, 208, 124, 0.5);
}

.item-card:hover::before {
  opacity: 1;
}

.item-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--color-green-dark);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.item-card__icon i {
  color: var(--color-green);
  font-size: 1.28rem;
  line-height: 1;
}

.item-card__num {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-green);
  margin-bottom: 8px;
}

.item-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.item-card__subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: 12px;
  line-height: 1.4;
}

.item-card__desc {
  font-size: 0.93rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   MOCKUP DAS 10 LANDING PAGES
   ============================================================ */
.lp-mockup-section {
  overflow: hidden;
}

/* Estágio: cards em ângulo atrás + mockup do navegador na frente */
.lp-mockup-stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 24px;
}

.lp-deco-stack {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  min-height: 400px;
}

.lp-deco-card {
  position: absolute;
  left: 50%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.lp-deco-card--1 {
  width: 72%;
  height: 280px;
  top: 52px;
  transform: translateX(-50%) rotate(-4deg);
  opacity: 0.34;
  z-index: 1;
}

.lp-deco-card--2 {
  width: 78%;
  height: 290px;
  top: 36px;
  transform: translateX(-50%) rotate(-2.5deg);
  opacity: 0.48;
  z-index: 2;
}

.lp-deco-card--3 {
  width: 84%;
  height: 296px;
  top: 22px;
  transform: translateX(-50%) rotate(-1.2deg);
  opacity: 0.62;
  z-index: 3;
}

.lp-deco-card--4 {
  width: 90%;
  height: 302px;
  top: 10px;
  transform: translateX(-50%) rotate(-0.4deg);
  opacity: 0.78;
  z-index: 4;
}

.lp-mockup-stage:hover .lp-deco-card--4 {
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(49, 208, 124, 0.12);
}

.lp-deco-inner {
  padding: 14px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lp-deco-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.lp-deco-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-border);
}

.lp-deco-bar span:nth-child(1) { background: #e63946; }
.lp-deco-bar span:nth-child(2) { background: #f5c518; }
.lp-deco-bar span:nth-child(3) { background: #31d07c; }

.lp-deco-head {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
  line-height: 1.25;
}

.lp-deco-sub {
  font-size: 0.6rem;
  color: var(--color-muted);
  margin-bottom: 8px;
  line-height: 1.35;
}

.lp-deco-line {
  height: 4px;
  background: rgba(169, 181, 199, 0.12);
  border-radius: 2px;
  margin-bottom: 5px;
}

.lp-deco-line--short { width: 62%; }
.lp-deco-line--medium { width: 80%; }
.lp-deco-line--long { width: 100%; }

.lp-deco-btn {
  height: 16px;
  width: 72px;
  margin-top: 4px;
  background: rgba(49, 208, 124, 0.15);
  border: 1px solid var(--color-border);
  border-radius: 50px;
}

/* Mockup: navegador + mini landing (modelo em inglês) */
.lp-browser-mockup {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: none;
}

.lp-browser {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(169, 181, 199, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.25);
  background: #060a10;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lp-mockup-stage:hover .lp-browser {
  border-color: rgba(49, 208, 124, 0.35);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 8px 28px rgba(49, 208, 124, 0.12);
}

.lp-browser__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #121a26 0%, #0b1018 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-browser__dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.lp-browser__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.lp-browser__dots span:nth-child(1) { background: #e63946; }
.lp-browser__dots span:nth-child(2) { background: #f5c518; }
.lp-browser__dots span:nth-child(3) { background: #31d07c; }

.lp-browser__url {
  flex: 1;
  min-width: 0;
  text-align: center;
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  color: rgba(169, 181, 199, 0.42);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-browser__viewport {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.lp-mini-lp {
  padding: 26px 22px 22px;
  background: linear-gradient(168deg, #3d281c 0%, #26160f 52%, #1f120d 100%);
}

.lp-mini-lp__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(120, 52, 38, 0.45);
  border: 1px solid rgba(230, 130, 95, 0.35);
}

.lp-mini-lp__headline {
  margin: 0 0 10px;
  font-size: clamp(1.02rem, 2.8vw, 1.32rem);
  font-weight: 800;
  line-height: 1.22;
  color: #fff;
  letter-spacing: -0.02em;
}

.lp-mini-lp__sub {
  margin: 0 0 18px;
  max-width: 38em;
  font-size: 0.74rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.lp-mini-lp__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  margin-bottom: 14px;
}

.lp-mini-lp__price {
  font-size: 1.85rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.lp-mini-lp__price-note {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.42);
}

.lp-mini-lp__cta {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 8px;
  background: #c4583a;
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.lp-mini-lp__micro {
  margin: 14px 0 0;
  font-size: 0.58rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.36);
}

.lp-mini-lp__below {
  padding: 16px 22px 18px;
  background: #f0e8df;
  border-top: 1px solid rgba(58, 38, 28, 0.08);
}

.lp-mini-lp__below-tag {
  display: block;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b84a40;
  margin-bottom: 6px;
}

.lp-mini-lp__below-title {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  color: #2a1a14;
}

.lp-mini-lp__below-text {
  margin: 0;
  font-size: 0.62rem;
  line-height: 1.55;
  color: #5c4338;
}

.lp-browser-mockup__caption {
  margin: 18px auto 0;
  max-width: 34rem;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.lp-browser-mockup__caption strong {
  color: var(--color-white);
  font-weight: 700;
}

/* Grade de cards com títulos das LPs */
.lp-titles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.lp-title-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.83rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color var(--transition), color var(--transition);
}

.lp-title-card::before {
  content: '↗';
  color: var(--color-green);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.lp-title-card:hover {
  border-color: rgba(49, 208, 124, 0.5);
  color: var(--color-white);
}

/* ============================================================
   MOCKUP DO DASHBOARD / PAINEL DE PROGRESSO
   ============================================================ */
.dashboard-section {}

.dashboard-mockup {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--glow-green);
  max-width: 860px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 460px;
}

/* Sidebar */
.dash-sidebar {
  background: #080f1c;
  border-right: 1px solid var(--color-border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
}

.dash-sidebar__logo {
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(169,181,199,0.08);
  margin-bottom: 16px;
}

.dash-sidebar__logo-text {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.dash-sidebar__subtitle {
  font-size: 0.65rem;
  line-height: 1.35;
  color: var(--color-muted);
  margin-top: 3px;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--color-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  border-radius: 0;
  text-decoration: none;
}

.dash-nav-item:hover {
  background: rgba(49,208,124,0.06);
  color: var(--color-white);
}

.dash-nav-item.active {
  background: rgba(49,208,124,0.1);
  color: var(--color-green);
  border-left: 3px solid var(--color-green);
  padding-left: 17px;
}

.dash-nav-item .dash-icon {
  width: 18px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.dash-nav-item .dash-icon i {
  font-size: 0.82rem;
  color: inherit;
}

/* Área principal */
.dash-main {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.dash-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.dash-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
}

.dash-btns {
  display: flex;
  gap: 8px;
}

.dash-btn {
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 6px;
  background: rgba(49,208,124,0.1);
  border: 1px solid var(--color-border);
  color: var(--color-green);
  cursor: default;
  letter-spacing: 0.03em;
}

/* Cards de progresso */
.dash-progress-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dash-prog-card {
  background: var(--color-bg-soft);
  border: 1px solid rgba(169,181,199,0.08);
  border-radius: var(--radius);
  padding: 14px;
}

.dash-prog-card__label {
  font-size: 0.65rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.dash-prog-card__value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
}

.dash-prog-card__value.green { color: var(--color-green); }

/* Barra de progresso */
.dash-progress-bar {
  height: 6px;
  background: rgba(169,181,199,0.1);
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}

.dash-progress-bar__fill {
  height: 100%;
  background: var(--color-green);
  border-radius: 3px;
  width: 0%;
  transition: width 1.5s ease;
}

/* Card de próximo passo */
.dash-next-step {
  background: rgba(49,208,124,0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.dash-next-step__label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-green);
  margin-bottom: 6px;
}

.dash-next-step__text {
  font-size: 0.85rem;
  color: var(--color-white);
}

/* Lista de tarefas */
.dash-tasks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-task {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--color-bg-soft);
  border: 1px solid rgba(169,181,199,0.06);
  border-radius: 8px;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.dash-task__check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid rgba(169,181,199,0.25);
  flex-shrink: 0;
  box-sizing: border-box;
}

.dash-task__label {
  flex: 1;
  min-width: 0;
}

.dash-task--done .dash-task__check {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--color-green);
  background: rgba(49, 208, 124, 0.14);
}

.dash-task--done .dash-task__check i {
  color: var(--color-green);
  font-size: 0.52rem;
  line-height: 1;
}

.dash-task--done .dash-task__label {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--color-green);
}

.dashboard-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-muted);
  padding: 8px 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px dashed rgba(169,181,199,0.12);
  max-width: 860px;
  margin: 0 auto;
}

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--glow-green);
  transform: translateY(-3px);
}

.benefit-card__num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--color-green);
  background: var(--color-green-dark);
  border: 1px solid var(--color-border);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.benefit-card__desc {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ============================================================
   PARA QUEM É / NÃO É
   ============================================================ */
.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.forwhom-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow var(--transition);
}

.forwhom-card--yes:hover {
  box-shadow: var(--glow-green);
}

.forwhom-card--no:hover {
  box-shadow: var(--glow-red), 0 0 36px rgba(230, 57, 70, 0.2), var(--shadow-card);
}

.forwhom-card--yes {
  border-top: 3px solid var(--color-green);
}

.forwhom-card--no {
  border: 1px solid rgba(230, 57, 70, 0.45);
  border-top: 3px solid var(--color-red-usa);
  box-shadow: var(--glow-red), var(--shadow-card);
}

.forwhom-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 24px;
}

.forwhom-card__title-icon {
  display: inline-flex;
  margin-right: 8px;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
}

.forwhom-card--yes .forwhom-card__title-icon {
  color: var(--color-green);
}

.forwhom-card--no .forwhom-card__title-icon {
  color: var(--color-red-usa);
}

.forwhom-card__title-icon i {
  font-size: 1.08rem;
  line-height: 1;
}

.forwhom-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.forwhom-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.forwhom-item__icon {
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}

.forwhom-item__icon i {
  color: var(--color-green);
  font-size: 0.88rem;
}

.forwhom-card--no .forwhom-item__icon i {
  color: var(--color-red-usa);
}

/* ============================================================
   PROVAS SOCIAIS / DEPOIMENTOS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--glow-green), var(--shadow-card);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-size: 2rem;
  color: var(--color-green);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-card__text {
  font-size: 0.97rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Avatar placeholder SVG */
.avatar-placeholder {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-green);
  background: var(--color-green-dark);
  border: 2px solid var(--color-border);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--color-white);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 2px;
}

/* ============================================================
   PREÇO / OFERTA
   ============================================================ */
.pricing-section {}

.pricing-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-card), var(--glow-green);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-green), transparent);
}

.pricing-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-green);
  border: 1px solid var(--color-border);
  padding: 5px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  background: rgba(49,208,124,0.06);
}

.pricing-card__product-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.pricing-card__product-tagline {
  display: block;
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-muted);
}

.pricing-card__old-price {
  font-size: 0.95rem;
  color: var(--color-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-card__price {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--color-green);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card__price-sub {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 32px;
}

.pricing-card__items {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius);
  border: 1px solid rgba(169,181,199,0.08);
}

.pricing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--color-white);
}

.pricing-item .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-green-dark);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  flex-shrink: 0;
}

.pricing-item .check i {
  font-size: 0.55rem;
  line-height: 1;
}

.pricing-card__cta {
  width: 100%;
  margin-bottom: 16px;
  font-size: 1.08rem;
}

.pricing-card__microcopy {
  font-size: 0.8rem;
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 0;
  line-height: 1.55;
}

.pricing-card__microcopy-lock {
  flex-shrink: 0;
  line-height: 1.55;
}

.pricing-card__microcopy-lock i {
  color: var(--color-green);
  font-size: 0.82rem;
}

.pricing-card__microcopy-text {
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(100%, 28rem);
  text-align: left;
}

/* ============================================================
   GARANTIA
   ============================================================ */
.guarantee-section {
  background: var(--color-bg-soft);
}

.guarantee-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--color-green-dark);
  border: 2px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: var(--glow-green);
}

.guarantee-badge__days {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-green);
  line-height: 1;
}

.guarantee-badge__text {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-green);
  margin-top: 3px;
}

.guarantee-inner p {
  color: var(--color-muted);
  font-size: 1.02rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.guarantee-obs {
  font-size: 0.82rem !important;
  opacity: 0.7;
  font-style: italic;
  padding: 16px;
  border: 1px dashed rgba(169,181,199,0.15);
  border-radius: var(--radius);
  margin-top: 8px !important;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(49,208,124,0.5);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
  font-family: var(--font-main);
}

.faq-question:hover {
  color: var(--color-green);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: -2px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  line-height: 1;
}

.faq-icon i {
  font-size: 0.65rem;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(49,208,124,0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 24px;
}

.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--color-muted);
  font-size: 0.97rem;
  line-height: 1.7;
  border-top: 1px solid rgba(169,181,199,0.06);
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.final-cta {
  background: linear-gradient(160deg, var(--color-bg) 0%, #081a0f 50%, var(--color-bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(49,208,124,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.final-cta__text {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.final-cta__support {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--color-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #040c17;
  border-top: 1px solid rgba(169,181,199,0.08);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
}

.footer__legal {
  font-size: 0.82rem;
  color: var(--color-muted);
  max-width: 600px;
  line-height: 1.65;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--color-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-green);
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(169,181,199,0.45);
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__microcopy {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__mockup-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .solution__inner {
    grid-template-columns: 1fr;
  }

  .forwhom-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-mockup {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

  .dash-progress-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    min-height: auto;
    padding: 60px 0 48px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    text-align: center;
  }

  .items-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .items-grid .item-card {
    padding: 24px 18px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 32px 20px;
  }

  .lp-deco-stack {
    min-height: 280px;
  }

  .lp-deco-card--1,
  .lp-deco-card--2 {
    display: none;
  }

  .lp-deco-card--3 {
    width: 88%;
    height: 252px;
    top: 20px;
    transform: translateX(-50%) rotate(-1deg);
    opacity: 0.52;
  }

  .lp-deco-card--4 {
    width: 96%;
    height: 260px;
    top: 8px;
    transform: translateX(-50%) rotate(-0.25deg);
    opacity: 0.85;
  }

  .lp-mini-lp {
    padding: 20px 16px 18px;
  }

  .lp-mini-lp__below {
    padding: 14px 16px 16px;
  }

  .lp-browser-mockup__caption {
    font-size: 0.84rem;
    padding: 0 8px;
  }

  .dash-progress-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-bar__inner {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================================
   PÁGINAS LEGAIS (Termos / Privacidade)
   ============================================================ */
body.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-header {
  background: var(--color-bg-soft);
  border-bottom: 1px solid rgba(169, 181, 199, 0.1);
  padding: 18px 0;
}

.legal-header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.legal-header__brand {
  display: block;
  max-width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.legal-header__brand:hover {
  box-shadow: var(--glow-green), var(--shadow-card);
  transform: translateY(-2px);
}

.legal-header__brand:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 4px;
}

.legal-header__brand img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.legal-main {
  flex: 1;
  padding: 48px 0 64px;
}

.legal-main .container {
  max-width: 720px;
}

.legal-page h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--color-white);
}

.legal-lead {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.legal-lead strong {
  color: var(--color-white);
}

.legal-section {
  margin-bottom: 28px;
}

.legal-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 12px;
}

.legal-section p,
.legal-section li {
  color: var(--color-muted);
  font-size: 0.93rem;
  margin-bottom: 10px;
}

.legal-section ul {
  padding-left: 1.25rem;
  margin-bottom: 10px;
}

.legal-section li {
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--color-green);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-section code {
  font-size: 0.85em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-muted);
}

.legal-cta-wrap {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(169, 181, 199, 0.1);
  text-align: center;
}

.legal-footer {
  padding: 22px 0;
  background: #040c17;
  border-top: 1px solid rgba(169, 181, 199, 0.08);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(169, 181, 199, 0.5);
}

.legal-footer a {
  color: var(--color-muted);
  text-decoration: none;
}

.legal-footer a:hover {
  color: var(--color-green);
}
