/*
Design philosophy reminder for this stylesheet:
Editorial financeiro contemporâneo com marfim, verde-petróleo e cobre, priorizando clareza, autoridade e conversão em uma peça estática sem scripts.
Cada bloco deve sustentar uma leitura fluida em desktop e mobile, preservando o aspecto premium da landing page original.
*/

:root {
  --bg: #f7f2ea;
  --bg-soft: #f1e7db;
  --surface: #fffdf8;
  --surface-dark: rgba(255, 255, 255, 0.06);
  --ink: #132a31;
  --ink-soft: #4f6770;
  --ink-muted: #6d848c;
  --dark: #08161c;
  --dark-2: #0d1d23;
  --dark-3: #123640;
  --accent: #c68a63;
  --accent-2: #d8a17a;
  --line: #dbc8b7;
  --line-soft: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 20px 50px rgba(18, 54, 64, 0.08);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.4);
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.2rem;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(198, 138, 99, 0.09), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0));
  background-color: var(--bg);
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.025em;
}

::selection {
  background: rgba(198, 138, 99, 0.28);
  color: #102b33;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 27, 34, 0.92);
  backdrop-filter: blur(16px);
}

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

.header-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
}

.header-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(198, 138, 99, 0.85);
  flex: 0 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(198, 138, 99, 0.16), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05), transparent 22%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.02) 100%),
    radial-gradient(rgba(255, 255, 255, 0.06) 0.6px, transparent 0.6px);
  background-size: auto, 14px 14px;
  opacity: 0.2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.75rem;
  align-items: center;
  padding: 3.5rem 0 4.5rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.65rem 1rem;
  backdrop-filter: blur(14px);
  font-size: 0.88rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.eyebrow.centered {
  justify-content: center;
}

.eyebrow.centered::before {
  display: none;
}

.hero-copy .eyebrow {
  margin-top: 2.5rem;
  color: #d8c9bd;
}

.hero h1 {
  margin-top: 1.2rem;
  max-width: 16ch;
  font-size: clamp(2rem, 5vw, 3.55rem);
  line-height: 0.95;
}

.hero-lead {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-primary,
.cta-link,
.whatsapp-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-weight: 700;
}

.cta-primary {
  align-self: flex-start;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #102b33;
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 50px rgba(198, 138, 99, 0.28);
}

.cta-link {
  gap: 0.65rem;
}

.risk-box {
  max-width: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.risk-box strong {
  color: #ffffff;
}

.hero-visual {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 161, 122, 0.22);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  padding: 0.75rem;
  box-shadow: var(--shadow-strong);
}

.photo-frame::before,
.photo-frame::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  border-radius: 999px;
  filter: blur(56px);
}

.photo-frame::before {
  top: 1.5rem;
  height: 6rem;
  background: rgba(216, 161, 122, 0.16);
}

.photo-frame::after {
  bottom: 0;
  height: 7rem;
  background: rgba(198, 138, 99, 0.22);
}

.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border-radius: 1.6rem;
}

.authority-box,
.editorial-card,
.timeline-card,
.comparison-card,
.offer-card,
.support-card,
.faq-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.authority-box {
  margin-top: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.76);
}

.authority-box p:first-child {
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  color: var(--accent-2);
}

.authority-box strong {
  color: #ffffff;
}

.section {
  padding: 5.5rem 0;
}

.section-light {
  background: var(--bg);
}

.section-dark {
  background: var(--dark-2);
  color: #ffffff;
}

.section-soft {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 52rem;
}

.section-heading .eyebrow {
  color: var(--dark-3);
}

.section-heading .eyebrow.accent {
  color: var(--accent-2);
}

.section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.section-heading p {
  margin-top: 1.25rem;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.section-dark .section-heading p,
.section-dark p.copy {
  color: rgba(255, 255, 255, 0.78);
}

.cards-grid {
  display: grid;
  gap: 1.25rem;
}

.timeline-card {
  min-height: 100%;
  border: 1px solid rgba(18, 54, 64, 0.1);
  background: linear-gradient(180deg, rgba(255,250,243,0.96), rgba(255,255,255,1));
  padding: 1.7rem;
}

.timeline-index {
  margin-bottom: 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.timeline-card .meta {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: #8b654c;
}

.timeline-card h3,
.faq-card h3,
.bonus-card h3,
.offer-card h3,
.comparison-card h3,
.support-card h3 {
  margin-top: 1rem;
  font-size: 1.85rem;
  line-height: 1.15;
}

.timeline-card p,
.bonus-card p,
.faq-card p,
.comparison-card p,
.offer-card p,
.speaker-copy p,
.support-card p,
.quote-card p {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.center-card {
  max-width: 62rem;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.9rem;
  background: rgba(255,255,255,0.06);
  padding: 2.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-soft);
}

.center-card p {
  margin-left: auto;
  margin-right: auto;
}

.bonus-grid,
.comparison-grid,
.faq-grid,
.support-grid,
.stats-grid,
.speaker-badges {
  display: grid;
  gap: 1rem;
}

.bonus-card,
.faq-card,
.support-card {
  border: 1px solid rgba(18, 54, 64, 0.08);
  background: var(--bg);
  padding: 1.5rem;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--dark-3);
  color: var(--accent-2);
  font-size: 1.1rem;
}

.quote-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.quote-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
}

.quote-card blockquote {
  margin: 0;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(216, 161, 122, 0.45);
  color: rgba(255,255,255,0.82);
  font-size: 1.25rem;
  line-height: 1.7;
}

.speaker-wrapper {
  max-width: 64rem;
}

.speaker-copy p {
  max-width: 48rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #35515a;
  line-height: 1.5;
}

.badge-item span {
  color: var(--accent);
  font-size: 1rem;
}

.comparison-card {
  border: 1px solid var(--line);
  padding: 2rem;
}

.comparison-card.dark {
  border-color: #17424c;
  background: var(--dark-3);
}

.comparison-card.dark,
.comparison-card.dark p,
.comparison-card.dark h3,
.comparison-card.dark .eyebrow {
  color: #ffffff;
}

.comparison-card.dark p {
  color: rgba(255,255,255,0.76);
}

.comparison-card .eyebrow {
  color: #8d5b3d;
}

.comparison-card.dark .eyebrow {
  color: var(--accent-2);
}

.offer-section {
  background: var(--bg);
}

.offer-card {
  border: 1px solid #d9c4ae;
  background: #ffffff;
  padding: 2rem;
  box-shadow: 0 26px 70px rgba(32, 50, 57, 0.1);
}

.offer-card .eyebrow {
  color: var(--dark-3);
}

.offer-card .copy {
  max-width: 46rem;
}

.offer-meta .stat-chip {
  border-color: var(--line);
  background: var(--bg);
  color: #35515a;
}

.price-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.price-old {
  font-size: 1.25rem;
  color: #8b6a59;
  text-decoration: line-through;
}

.price-new {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 1;
  color: var(--dark-3);
}

.glow-divider {
  height: 1px;
  width: 100%;
  margin: 2rem 0;
  background: linear-gradient(90deg, transparent, rgba(198, 138, 99, 0.72), transparent);
}

.check-list {
  display: grid;
  gap: 0.9rem;
}

.check-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #20383f;
}

.check-icon {
  color: var(--accent);
  line-height: 1;
}

.small-note {
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-layout {
  display: grid;
  gap: 2rem;
}

.support-section {
  padding-top: 0;
  padding-bottom: 5rem;
}

.support-card {
  max-width: 62rem;
  margin: 0 auto;
  border: 1px solid #d9c4ae;
  background: var(--bg);
  padding: 2rem;
}

.support-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.whatsapp-placeholder {
  margin-top: 1rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0.95rem 1.1rem;
  color: #35515a;
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid #d9c9b7;
  background: var(--bg);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-inner p {
  color: #617981;
  line-height: 1.6;
}

.utility-arrow {
  font-size: 0.95rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }

  .bonus-grid,
  .support-grid,
  .stats-grid,
  .speaker-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .hero-inner,
  .quote-layout,
  .faq-layout,
  .footer-inner {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero-inner,
  .quote-layout,
  .faq-layout {
    display: grid;
  }

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

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

  .footer-inner {
    align-items: center;
  }

  .footer-inner .footer-copy {
    max-width: 50rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .section {
    padding: 7rem 0;
  }

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

  .cards-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .speaker-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-copy {
    max-width: 44rem;
  }
}

@media (max-width: 719px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header .cta-link {
    display: none;
  }

  .center-card,
  .offer-card,
  .support-card,
  .comparison-card,
  .bonus-card,
  .faq-card,
  .timeline-card {
    padding: 1.5rem;
  }

  .quote-card blockquote {
    font-size: 1.08rem;
  }
}
