/* ============================================
   1. DESIGN TOKENS
   ============================================ */
:root {
  --navy: #0B192C;
  --navy-light: #1a3a5c;
  --navy-deep: #060D1A;
  --navy-soft: #13233F;
  --cream: #FAF9F6;
  --pearl: #F1EEE7;
  --gold: #C5A880;
  --gold-bright: #D9BC8C;
  --graphite: #1A1A1A;
  --graphite-soft: #4A4A4A;
  --white: #FFFFFF;
  --off-white-text: #E9E6DE;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --container: 1180px;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.15;
  font-weight: 600;
}

p {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #B89B5A 0%, #C5A880 100%);
  color: var(--navy-deep);
  box-shadow: 0 6px 18px rgba(184, 155, 90, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  transform: skewX(-20deg);
  animation: btn-shine 3s ease-in-out infinite;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184, 155, 90, 0.45);
}

@keyframes btn-shine {

  0%,
  70%,
  100% {
    left: -60%;
  }

  100% {
    left: 120%;
  }
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(250, 249, 246, 0.4);
  color: inherit;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(197, 168, 128, 0.08);
}

.btn-outline.on-light {
  border: 1px solid rgba(26, 26, 26, 0.25);
}

.btn-outline.on-light:hover {
  border-color: var(--gold);
  background: rgba(197, 168, 128, 0.08);
}

.btn-lg {
  padding: 20px 44px;
  font-size: 1rem;
}

/* ============================================
   2. HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 25, 44, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(11, 25, 44, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo strong {
  font-weight: 700;
  font-size: 1.15rem;
}

.logo span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--off-white-text);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cta .btn {
  padding: 12px 28px;
  font-size: 0.85rem;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: #f0e9d6;
  border-radius: 999px;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.nav-cta .btn:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================
   3. HERO — with lighthouse beam signature
   ============================================ */
.hero {
  min-height: 100vh;
  background: url('assets/Foto Banner Dennis Paiva.png') center/cover no-repeat;
  color: var(--off-white-text);
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 13, 26, 0.85) 0%, rgba(6, 13, 26, 0.4) 60%, transparent 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
  max-width: 780px;
  margin-left: 0;
  padding-left: 140px;
  padding-right: 24px;
}

.hero-eyebrow {
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero p.sub {
  font-size: 1.08rem;
  color: rgba(233, 230, 222, 0.82);
  max-width: 560px;
  margin-bottom: 38px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 55px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  font-size: 0.75rem;
  padding: 9px 16px;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 999px;
  color: rgba(233, 230, 222, 0.85);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   4. SECTION 2 — DOR (IDENTIFICAÇÃO)
   ============================================ */
.pain {
  background: var(--cream);
  padding: 110px 0;
}

.pain-head {
  text-align: center;
  margin-bottom: 50px;
}

.pain-head .eyebrow {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pain-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  font-weight: 600;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pain-card {
  border-radius: 16px;
  padding: 48px 36px;
  background: var(--pearl);
  border: 1px solid rgba(197, 168, 128, 0.15);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.reveal.pain-card {
  transform: translateY(24px);
}

.reveal.pain-card.is-visible {
  transform: translateY(0);
}

.reveal.pain-card.is-visible:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(11, 25, 44, 0.18), 0 15px 25px rgba(11, 25, 44, 0.12);
  border-color: var(--gold);
}

.pain-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(197, 168, 128, 0.4);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.pain-card p {
  color: var(--graphite-soft);
  font-size: 0.92rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.pain-card p strong {
  color: var(--navy);
  font-weight: 600;
}

.pain-card__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

/* ============================================
   5. SECTION 3 — BENEFÍCIOS
   ============================================ */
.benefits {
  position: relative;
  padding: 110px 0 60px;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?w=1600&h=900&fit=crop&q=60') center/cover no-repeat;
  filter: blur(20px) brightness(0.9);
  z-index: 0;
}

.benefits::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 249, 246, 0.85);
  z-index: 1;
}

.benefits>* {
  position: relative;
  z-index: 2;
}

.benefits-head {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-head .eyebrow {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.benefits-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  font-weight: 600;
}

.benefits-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px;
}

.benefit-full {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.benefit-full--left {
  flex-direction: row;
}

.benefit-full--right {
  flex-direction: row-reverse;
}

.benefit-full__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.benefit-full__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.benefit-full:hover .benefit-full__img img {
  transform: scale(1.05);
}

.benefit-full__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 13, 26, 0.85) 0%, rgba(6, 13, 26, 0.4) 50%, transparent 100%);
}

.benefit-full--right .benefit-full__img::after {
  background: linear-gradient(270deg, rgba(6, 13, 26, 0.85) 0%, rgba(6, 13, 26, 0.4) 50%, transparent 100%);
}

.benefit-full__content {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 480px;
}

.benefit-full--left .benefit-full__content {
  margin-right: auto;
}

.benefit-full--right .benefit-full__content {
  margin-left: auto;
  text-align: right;
}

.benefit-full__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.benefit-full__content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  margin-bottom: 16px;
}

.benefit-full__content p {
  color: rgba(233, 230, 222, 0.85);
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   6. SECTION 4 — AUTORIDADE
   ============================================ */
.authority {
  background: var(--cream);
  padding: 120px 0;
}

.authority-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.authority-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 440px;
  height: 570px;
  border: 3px solid var(--gold);
  outline: 2px solid rgba(197, 168, 128, 0.3);
  outline-offset: 6px;
  box-shadow: 0 20px 60px rgba(11, 25, 44, 0.3), 0 0 0 1px rgba(197, 168, 128, 0.1);
}

.authority-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.authority-photo:hover img {
  transform: scale(1.03);
}

.authority-text .eyebrow {
  margin-bottom: 18px;
}

.authority-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  font-weight: 500;
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 24px;
}

.authority-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.authority-text p {
  color: var(--graphite-soft);
  margin-bottom: 20px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.authority-info {
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid rgba(11, 25, 44, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.authority-info__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.authority-info__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.authority-info__value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
}

/* ============================================
   7. SECTION 5 — PROCESSO
   ============================================ */
.process {
  background: var(--navy);
  padding: 120px 0;
}

.process-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 70px;
}

.process-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  color: var(--off-white-text);
  margin-top: 14px;
}

.process-head .eyebrow {
  color: var(--gold);
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 80px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 25px;
  bottom: 25px;
  width: 2px;
  background: rgba(197, 168, 128, 0.12);
}

.timeline-fill {
  position: absolute;
  left: 48px;
  top: 25px;
  width: 2px;
  height: 0;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  z-index: 2;
  margin-bottom: 90px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -56px;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--navy);
  border: 2px solid rgba(197, 168, 128, 0.15);
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.timeline-item.active .timeline-dot {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(197, 168, 128, 0.6), 0 0 40px rgba(197, 168, 128, 0.25), 0 0 80px rgba(197, 168, 128, 0.1);
  animation: dot-glow 2s ease-in-out infinite;
}

@keyframes dot-glow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.6), 0 0 40px rgba(197, 168, 128, 0.25), 0 0 80px rgba(197, 168, 128, 0.1);
  }

  50% {
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.8), 0 0 50px rgba(197, 168, 128, 0.35), 0 0 100px rgba(197, 168, 128, 0.15);
  }
}

.timeline-number {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(197, 168, 128, 0.4);
  transition: color 0.4s ease;
}

.timeline-item.active .timeline-number {
  color: var(--gold);
}

.timeline-content {
  padding-left: 16px;
  opacity: 0.3;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.active .timeline-content {
  opacity: 1;
  transform: translateY(0);
}

.timeline-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--off-white-text);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.timeline-item.active .timeline-content h3 {
  color: var(--white);
}

.timeline-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.87rem;
  color: rgba(250, 249, 246, 0.55);
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ============================================
   7. SECTION 6 — FAQ
   ============================================ */
.faq {
  background: var(--pearl);
  padding: 110px 0;
}

.faq-head {
  text-align: center;
  margin-bottom: 50px;
}

.faq-head .eyebrow {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  font-weight: 600;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(11, 25, 44, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.3s var(--ease);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question svg {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--graphite-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================
   8. SECTION 7 — O FAROL
   ============================================ */
.farol {
  background: var(--navy-deep);
  color: var(--off-white-text);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.farol-beam {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 1px;
  height: 160%;
  background: linear-gradient(180deg, rgba(197, 168, 128, 0.4), transparent 70%);
  transform-origin: top center;
  animation: rotateBeam 14s linear infinite;
  opacity: 0.5;
}

@keyframes rotateBeam {
  from {
    transform: rotate(-40deg);
  }

  to {
    transform: rotate(40deg);
  }
}

.farol-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 200px;
  align-items: center;
}

.farol-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(197, 168, 128, 0.4);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.farol h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--white);
  margin-bottom: 24px;
}

.farol h2 span {
  color: var(--gold-bright);
  font-style: italic;
}

.farol>.container>.farol-inner>.farol-text p {
  color: rgba(233, 230, 222, 0.78);
  font-size: 1.02rem;
  margin-bottom: 26px;
  max-width: 520px;
}

.farol-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.old-price {
  font-size: 0.95rem;
  color: rgba(233, 230, 222, 0.45);
}

.old-price del {
  text-decoration: line-through;
}

.new-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-bright);
}

.farol-ebook-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.farol-ebook-col.reveal-slide-left {
  transition: opacity 1.8s var(--ease), transform 1.8s var(--ease);
}

.farol-ebook-wrap {
  perspective: 600px;
}

.farol-ebook {
  width: 500px;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(197, 168, 128, 0.1);
  transform: rotateY(-12deg) rotateX(5deg) translateY(-10px);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.farol-ebook:hover {
  transform: rotateY(-5deg) rotateX(2deg) translateY(-20px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7), 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 80px rgba(197, 168, 128, 0.2);
}

.farol-topics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.farol-topics li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  font-size: 0.98rem;
  color: rgba(233, 230, 222, 0.9);
}

.farol-topics li:last-child {
  border-bottom: none;
}

.farol-topics li::before {
  content: '✓';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* ============================================
   9. SECTION 7 — CTA FINAL
   ============================================ */
.final-cta {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(11, 25, 44, 0.75) 0%,
      rgba(11, 25, 44, 0.6) 50%,
      rgba(11, 25, 44, 0.8) 100%);
}

.final-cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid rgba(197, 168, 128, 0.5);
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 28px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.25;
}

.final-cta h2 span {
  color: var(--gold-bright);
  font-style: italic;
}

.final-cta p {
  color: rgba(250, 249, 246, 0.78);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.final-cta .btn {
  box-shadow: 0 8px 30px rgba(197, 168, 128, 0.3);
}

.final-cta .btn:hover {
  box-shadow: 0 12px 40px rgba(197, 168, 128, 0.5);
}

.final-cta-note {
  display: block;
  margin-top: 18px;
  font-size: 0.8rem;
  color: rgba(250, 249, 246, 0.45);
  letter-spacing: 0.05em;
}

/* ============================================
   10. FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-deep);
  color: rgba(233, 230, 222, 0.6);
  padding: 70px 0 30px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
}

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand .logo strong {
  color: var(--white);
  font-size: 1.1rem;
}

.footer-title {
  color: rgba(233, 230, 222, 0.8);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.footer-brand p {
  max-width: 320px;
  line-height: 1.7;
  font-size: 0.88rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-col li svg {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.8;
}

.footer-col li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col li a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  padding-top: 26px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(233, 230, 222, 0.45);
}

/* ============================================
   REVEAL ON SCROLL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

.reveal-slide-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

.reveal-slide-left.is-visible,
.reveal-slide-right.is-visible {
  opacity: 1;
  transform: none;
}

.clip-reveal h2 {
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.clip-reveal.is-visible h2 {
  transform: translateY(0);
  opacity: 1;
}

.benefit-full:nth-child(1) {
  transition-delay: 0s;
}

.benefit-full:nth-child(2) {
  transition-delay: 0.25s;
}

.benefit-full:nth-child(3) {
  transition-delay: 0.5s;
}

.benefit-full:nth-child(4) {
  transition-delay: 0.75s;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* ---- Mobile menu (hidden by default, all sizes) ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  max-height: 100vh;
  background: var(--navy-deep);
  z-index: 1100;
  padding: 100px 32px 40px;
  display: none;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}

.mobile-menu a {
  color: var(--off-white-text);
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.mobile-menu .btn {
  margin-top: 10px;
  color: #000 !important;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 26, 0.5);
  z-index: 1050;
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.menu-overlay.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1300px) {
  .hero .container {
    padding-left: 50px;
    padding-right: 280px;
    max-width: 100%;
  }

  .hero p.sub {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  .hero-eyebrow {
    font-size: 0.8rem;
  }

  .hero .btn {
    font-size: 1.2rem;
  }

  .badge {
    font-size: 1rem;
    padding: 7px 14px;
  }



  .pain-head h2 {
    font-size: 2.4rem;
  }

  .pain-card {
    padding: 24px 18px;
  }

  .pain-card__num {
    font-size: 2.2rem;
    top: 14px;
    right: 16px;
  }

  .pain-card h3 {
    font-size: 1.8rem;
  }

  .pain-card p {
    font-size: 1rem;
  }

  .benefits {
    padding: 70px 0 40px;
  }

  .benefits-head h2 {
    font-size: 2.4rem;
  }

  .benefit-full {
    min-height: 280px;
  }

  .benefit-full__content {
    padding: 22px 16px;
  }

  .benefit-full__num {
    font-size: 2.4rem;
  }

  .benefit-full__content h3 {
    font-size: 2.3rem !important;
    margin-bottom: 10px;
  }

  .benefit-full__content p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
  }


  .authority-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .authority-photo {
    width: 50vw;
    height: 43vh;
    margin: 0 auto;
  }

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

  .authority-text h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .authority-text p {
    font-size: 1.1rem;
    text-align: justify;
    padding: 0 45px 0 45px;
  }

  .authority-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 17%;
    gap: 24px;
    padding-top: 36px;
    margin-top: 40px;
  }

  .authority-info__value {
    font-size: 1.2rem;
  }


  .timeline-number {
    font-size: 1.2rem;
  }

  .process-head h2 {
    font-size: 2.4rem;
  }

  .section-cta .btn {
    font-size: 1.2rem;
  }

  .timeline-content h3 {
    font-size: 1.8rem;
    padding-left: 10px;
  }

  .timeline-content p {
    font-size: 1rem;
    padding-left: 10px;
  }

  .faq-question {
    font-size: 1.4rem;
  }

  .faq-head h2 {
    font-size: 2.4rem;
  }

  .faq-answer p {
    font-size: 1.1rem;
  }

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

  .timeline {
    padding-left: 60px;
  }

  .timeline::before {
    left: 33px;
  }

  .timeline-fill {
    left: 33px;
  }

  .timeline-dot {
    left: -48px;
    width: 44px;
    height: 44px;
  }

  .timeline-content {
    padding: 0;
  }

  .farol-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .farol-ebook {
    width: 45vw;
    margin: 0 auto;
  }

  .farol-ebook-col {
    display: flex;
    justify-content: center;
  }

  .farol>.container>.farol-inner>.farol-text p {
    font-size: 1.3rem;
  }

  .farol>.container>.farol-inner>.farol-text .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.4rem;
  }

  .farol h2 {
    font-size: 2.9em;
  }

  .new-price {
    font-size: 2.2rem;
  }

  .old-price {
    font-size: 1.2rem;
  }

  .farol-topics li {
    font-size: 1.2rem;
  }

  .final-cta {
    min-height: 70vh;
  }

  .final-cta h2 {
    font-size: clamp(3.2rem, 5vw, 2.2rem);
  }

  .final-cta p {
    font-size: 1.2rem;
    padding: 0 16px;
  }

  .final-cta .btn {
    font-size: 1.3rem;
    padding: 18px 40px;
  }

  .final-cta-note {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    text-align: center;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-bottom {
    font-size: 1rem;
  }

  .nav-links {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .nav-cta {
    display: none;
  }

  .whatsapp-float {
    width: 76px;
    height: 76px;
    bottom: 28px;
    right: 28px;
  }

  .whatsapp-float svg {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 600px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    padding: 32px 24px;
  }

  .authority-info {
    grid-template-columns: 2fr;
  }

  .benefit-full {
    height: auto;
    min-height: 320px;
  }

  .benefit-full__content {
    padding: 28px 20px;
    max-width: 100%;
  }

  .benefit-full--right .benefit-full__content {
    text-align: left;
  }

  .benefit-full__num {
    font-size: 2.2rem;
  }

  .benefit-full__content h3 {
    font-size: 1.2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p.sub {
    font-size: 0.95rem;
  }

  .hero-badges {
    flex-direction: column;
  }

  .nav-cta .btn-gold {
    padding: 10px 18px;
    font-size: 0.78rem;
  }

  .authority-photo {
    width: 280px;
    height: 363px;
  }

  .authority-text h2 {
    font-size: 1.5rem;
  }

  .timeline {
    padding-left: 50px;
  }

  .timeline::before {
    left: 25px;
  }

  .timeline-fill {
    left: 25px;
  }

  .timeline-dot {
    left: -42px;
    width: 38px;
    height: 38px;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }

  .farol {
    padding: 80px 0;
  }

  .farol-ebook {
    width: 220px;
  }

  .farol h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .farol-topics li {
    font-size: 0.9rem;
  }

  .section-cta .btn {
    width: 100%;
  }

  .final-cta {
    min-height: 60vh;
  }

  .final-cta h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .final-cta p {
    font-size: 0.9rem;
    padding: 0 12px;
  }

  .final-cta .btn {
    padding: 16px 32px;
    font-size: 0.9rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 20px 0;
  }

  .container {
    padding: 0 16px;
  }

  section {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .hero {
    background: url('assets/Foto banner Denis Paiva mobile.png') center/cover no-repeat;
    background-position: 44% center;
    padding-top: 290px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(6, 13, 26, 0.3) 0%, transparent 30%, rgba(6, 13, 26, 0.7) 100%),
      linear-gradient(90deg, rgba(6, 13, 26, 0.6) 0%, rgba(6, 13, 26, 0.3) 50%, transparent 100%);
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero p.sub {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-eyebrow {
    font-size: 0.5rem;
  }

  .btn {
    font-size: 1.08rem !important;
    padding: 12px 24px !important;
  }

  .btn-lg {
    font-size: 0.82rem;
    padding: 14px 28px;
  }

  .hero .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .badge {
    font-size: 0.83rem;
    padding: 7px 12px;
  }

  .pain {
    padding: 70px 0;
  }

  .pain-head h2 {
    font-size: 2rem;
  }

  .pain-card {
    padding: 24px 18px;
  }

  .pain-card__num {
    font-size: 2.2rem;
    top: 14px;
    right: 16px;
  }

  .pain-card h3 {
    font-size: 1.4rem;
  }

  .pain-card p {
    font-size: 0.85rem;
  }

  .benefits {
    padding: 70px 0 40px;
  }

  .benefits-head h2 {
    font-size: 2rem;
  }

  .benefit-full {
    min-height: 280px;
  }

  .benefit-full__content {
    padding: 22px 16px;
  }

  .benefit-full__num {
    font-size: 2.3rem;
  }

  .benefit-full__content h3 {
    font-size: 1.7rem !important;
    margin-bottom: 10px;
  }

  .benefit-full__content p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .authority {
    padding: 80px 0;
  }

  .authority-photo {
    width: 350px;
    height: 426px;
    border-width: 2px;
    border-color: var(--gold);
    outline-width: 1px;
    outline-offset: 4px;
  }

  .authority-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .authority-text p {
    font-size: 0.98rem;
    text-align: justify;
    padding: 0 8px 0 8px;
  }

  .authority-info {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 0 0 0;
    margin-top: 40px;
    text-align: center;
    justify-items: center;
  }

  .authority-info__item {
    align-items: center;
  }

  .authority-info__value {
    font-size: 0.95rem;
  }

  .process {
    padding: 80px 0;
  }

  .process-head h2 {
    font-size: 2rem;
  }

  .timeline {
    padding-left: 44px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-fill {
    left: 20px;
  }

  .timeline-dot {
    left: -38px;
    width: 34px;
    height: 34px;
  }

  .timeline-number {
    font-size: 0.92rem;
  }

  .timeline-content h3 {
    font-size: 1.4rem;
    padding-left: 10px;
  }

  .timeline-content p {
    font-size: 0.9rem;
    padding-left: 10px;
  }

  .faq {
    padding: 70px 0;
  }

  .faq-head h2 {
    font-size: 2.03rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 18px 0;
  }

  .faq-answer p {
    font-size: 0.88rem;
  }

  .farol {
    padding: 60px 0;
  }

  .farol h2 {
    font-size: 2rem;
  }

  .farol>.container>.farol-inner>.farol-text p {
    font-size: 0.95rem;
  }

  .farol>.container>.farol-inner>.farol-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .farol>.container>.farol-inner>.farol-text .btn {
    font-size: 1.1rem;
  }

  .farol-ebook {
    width: 340px;
  }

  .farol-price {
    flex-direction: column;
    gap: 6px;
  }

  .old-price {
    font-size: 1.1rem;
  }

  .new-price {
    font-size: 1.8rem;
  }

  .farol-topics {
    margin-bottom: 25px;
  }

  .farol-topics li {
    font-size: 0.95rem;
    gap: 12px;
    padding-bottom: 14px;
  }

  .farol-topics li::before {
    font-size: 1rem;
  }

  .final-cta {
    min-height: 75vh;
  }

  .final-cta h2 {
    font-size: 2.3rem;
    line-height: 1.3;
  }

  .final-cta p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .final-cta-badge {
    font-size: 0.6rem;
    padding: 6px 14px;
  }

  .final-cta .btn {
    padding: 14px 28px;
    font-size: 1.1rem;
    width: 100%;
  }

  .final-cta-note {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand .logo strong {
    font-size: 1rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .footer-col h4 {
    font-size: 0.78rem;
    margin-bottom: 16px;
  }

  .footer-col li {
    font-size: 0.88rem;
    gap: 10px;
  }

  .footer-col li svg {
    width: 15px;
    height: 15px;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .section-cta {
    margin-top: 36px;
  }

  .mobile-menu {
    width: 100%;
    padding: 80px 32px 30px;
    gap: 36px;
  }

  .nav-inner {
    padding: 30px 24px;
  }

  .mobile-menu a {
    font-size: 0.95rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 68px;
  height: 68px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ============================================
   SAFARI / iOS HOVER SUPPORT
   ============================================ */
.btn,
.faq-question,
.nav-links a,
.nav-cta a,
.mobile-menu a {
  -webkit-tap-highlight-color: rgba(197, 168, 128, 0.3);
  -webkit-touch-callout: none;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-2px);
  }

  .btn-gold:hover {
    box-shadow: 0 12px 28px rgba(184, 155, 90, 0.45);
  }

  .btn-outline:hover {
    border-color: var(--gold);
    background: rgba(197, 168, 128, 0.08);
  }

  .btn-outline.on-light:hover {
    border-color: var(--gold);
    background: rgba(197, 168, 128, 0.08);
  }

  .nav-links a:hover,
  .nav-cta a:hover {
    color: var(--gold);
  }

  .faq-question:hover {
    background: var(--pearl);
  }
}