:root {
  --navy: #040d18;
  --navy-mid: #071220;
  --navy-light: #0c1d30;
  --dark: #01060e;
  --sage: #7a9668;
  --sage-light: #a8c298;
  --sage-pale: #d4e3cc;
  --sage-deep: #4d7a42;
  --gold: #C9A84C;
  --gold-light: #e2c97e;
  --cream: #f8f7f2;
  --white: #ffffff;
  --text-mid: #4a5568;
  --text-gray: #718096;
  --border-gold: rgba(109, 153, 96, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: .02em;
}

/* ── UTILITIES ── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  border-radius: 2px;
  margin: .9rem auto 1.2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  margin-bottom: .5rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* ── ANIMATIONS ── */
.anim {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s ease, transform .75s ease;
}

.anim.fl {
  transform: translateX(-50px);
}

.anim.fr {
  transform: translateX(50px);
}

.anim.sc {
  transform: scale(.92);
}

.anim.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

.d5 {
  transition-delay: .5s
}

.d6 {
  transition-delay: .6s
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  background: linear-gradient(135deg, #c9a84c 0%, #d9b85a 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 1.1rem 2.4rem;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(201, 168, 76, .4);
  transition: transform .25s, box-shadow .25s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 168, 76, .6);
}


@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 8px 28px rgba(201, 168, 76, .4);
  }

  50% {
    box-shadow: 0 14px 50px rgba(201, 168, 76, .7);
  }
}

.pulse {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: url('assets/bg-hero1.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 4rem 1.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(109, 153, 96, .15);
  border: 1px solid rgba(109, 153, 96, .35);
  color: var(--gold);
  font-size: .60rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .38rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.22;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero h1 em {
  color: var(--sage-light);
  font-style: normal;
}

.hero h1 .hl {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 2.4rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.2rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .35rem;
}

.trust-item .dot {
  color: var(--sage-light);
}

.hero-img-wrap {
  position: relative;
}

/* ── PRE-VIDEO ── */
.pre-video {
  background:
    radial-gradient(ellipse 55% 70% at 0% 50%, #071220 0%, transparent 100%),
    radial-gradient(ellipse 55% 70% at 100% 50%, #071220 0%, transparent 100%),
    #01060e;
  padding: 5rem 1.5rem;
}

.pre-video-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 4rem;
  align-items: center;
}

.pre-video-img {
  position: relative;
}

.pre-video-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .12);
}

.pre-video-head {
  margin-bottom: 2rem;
}

.pre-video-divider {
  margin-left: 0;
  margin-right: auto;
}

.hl-gold {
  color: var(--gold);
  font-weight: 700;
}

.pre-video-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--white);
  margin-bottom: .5rem;
}

.pre-video .bullets li {
  background: rgba(255, 255, 255, .06);
  border-left-color: var(--gold);
  box-shadow: none;
  color: rgba(255, 255, 255, .78);
}

.pre-video .bullets li::before {
  color: var(--gold);
}

/* br helpers */
.mobile-br  { display: none; }
.desktop-br { display: block; }

@media(max-width:900px) {
  .pre-video-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pre-video-photo {
    height: 360px;
  }

  .mobile-br  { display: block; }
  .desktop-br { display: none; }

  .pre-video-head h2 {
    text-align: center;
  }

  .pre-video-divider {
    margin-left: auto;
    margin-right: auto;
  }
}

.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.4rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--sage);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.bullets li::before {
  content: '→';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── VIDEO ── */
.video-section {
  background: var(--navy);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(122, 150, 104, .08) 0%, transparent 70%);
}

.video-section .section-header h2 {
  color: var(--white);
}

.video-section .section-header p {
  color: rgba(255, 255, 255, .55);
}

.video-wrap {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  aspect-ratio: 16/9;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ── PARA QUEM ── */
.for-whom {
  background: var(--navy-mid);
  padding: 5rem 1.5rem;
}

.for-whom .section-header h2 {
  color: var(--white);
}

.for-whom .section-header p {
  color: rgba(255, 255, 255, .55);
}

.fw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.fw-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, .05);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: none;
  transition: transform .25s, border-color .25s;
}

.fw-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 153, 96, .4);
}

.fw-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(122, 150, 104, .12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
}

.fw-card p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
}

.fw-card p strong {
  color: var(--white);
}

.fw-cta {
  text-align: center;
}

/* ── COMO FUNCIONA ── */
.how {
  background: var(--navy);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.how::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(122, 150, 104, .1) 0%, transparent 70%);
  border-radius: 50%;
}

.how .section-header h2 {
  color: var(--white);
}

.how .section-header p {
  color: rgba(255, 255, 255, .55);
}

.weeks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.week-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(109, 153, 96, .18);
  border-radius: 12px;
  padding: 2rem;
  transition: background .25s, border-color .25s, transform .25s;
}

.week-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(109, 153, 96, .35);
  transform: translateY(-4px);
}

.week-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(109, 153, 96, .22);
  line-height: 1;
  margin-bottom: .3rem;
}

.week-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.week-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: .6rem;
}

.week-desc {
  font-size: .88rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.72;
}

/* ── OFERTA ── */
.offer {
  background: #01060e;
  padding: 5rem 1.5rem;
}

.offer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

.offer-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 2.5rem;
  align-items: start;
}

/* — card esquerdo — */
.offer-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(109, 153, 96, .4);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.offer-card-tagline {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  text-align: center;
}

.offer-price-block {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 1.6rem 1.2rem 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}

.offer-price-main-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: -.2rem;
}

.offer-price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
  letter-spacing: -.01em;
}

.offer-price-cents {
  font-size: 2.2rem;
  font-weight: 500;
  vertical-align: super;
  color: #d9b85a;
}

.offer-price-divider-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .12);
  margin: .5rem 0 .2rem;
}

.offer-price-or {
  font-size: .82rem;
  color: rgba(255, 255, 255, .38);
  letter-spacing: .02em;
}

.offer-price-or strong {
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
}

.offer-card-payment {
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  text-align: center;
}

.offer-bonus-wrap {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 1.2rem;
}

.offer-bonus-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}

.offer-bonus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.offer-bonus-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
}

.bonus-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.offer-card-btn {
  width: 100%;
  border-radius: 100px;
  justify-content: center;
}

.offer-card-secure {
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  text-align: center;
}

/* — cards direita — */
.offer-features {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.offer-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  transition: border-color .25s;
}

.offer-feature:hover {
  border-color: rgba(109, 153, 96, .4);
}

.offer-feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(109, 153, 96, .12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.offer-feature-guarantee .offer-feature-icon {
  background: transparent;
  border: 2px dashed rgba(109, 153, 96, .55);
  border-radius: 50%;
  flex-direction: column;
  gap: 1px;
}

.guar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.guar-lbl {
  font-size: .42rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.3;
}

.offer-feature-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}

.offer-feature-text p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .52);
  line-height: 1.6;
}

@media(max-width:900px) {
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .offer-features {
    order: -1;
  }
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--navy-mid);
  padding: 5rem 1.5rem;
}

.testimonials .section-header h2 {
  color: var(--white);
}

.testimonials .section-header p {
  color: rgba(255, 255, 255, .55);
}

.t-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.t-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.t-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
  padding: 1.8rem;
  position: relative;
}

.t-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: rgba(109, 153, 96, .15);
  position: absolute;
  top: -.4rem;
  left: 1.4rem;
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: .82rem;
  margin-bottom: .9rem;
}

.t-text {
  font-size: .9rem;
  color: rgba(255, 255, 255, .78);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: .6rem;
}

.t-text:last-of-type {
  margin-bottom: 1.4rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.t-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
}

.t-role {
  font-size: .78rem;
  color: rgba(255, 255, 255, .38);
}

/* ── BIG QUOTE ── */
.big-quote {
  min-height: 520px;
  background: url('assets/bg-quote.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.big-quote-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.big-quote blockquote {
  max-width: 680px;
  padding: 3rem;
  background: rgba(8, 15, 34, .65);
  backdrop-filter: blur(6px);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.big-quote blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.big-quote cite {
  font-size: .85rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: .08em;
}

@media(max-width:768px) {
  .big-quote {
    background-position: left center;
  }

  .big-quote-inner {
    justify-content: center;
  }

  .big-quote blockquote {
    max-width: 100%;
    backdrop-filter: blur(2px);
  }
}

/* ── AUTORIDADE ── */
.authority {
  background: #030a14;
  padding: 5rem 1.5rem;
}

.auth-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 4rem;
  align-items: center;
}

.auth-img-wrap {
  position: relative;
}

.auth-photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  display: block;
}

.auth-img-wrap::after {
  content: '';
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 2px solid var(--sage);
  border-radius: 12px;
  z-index: -1;
}

.authority .section-header {
  text-align: left;
}

.auth-text {
  font-size: .97rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.82;
  margin-bottom: 1.4rem;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.cred-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .72);
}

.cred-dot {
  width: 7px;
  height: 7px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── COMPARAÇÃO ── */
.comparison {
  background: var(--navy);
  padding: 5rem 1.5rem;
}

.comparison .section-header h2 {
  color: var(--white);
}

.cmp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.cmp-col {
  border-radius: 12px;
  padding: 2rem;
}

.cmp-col.without {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
}

.cmp-col.with {
  background: rgba(122, 150, 104, .12);
  border: 1px solid rgba(122, 150, 104, .3);
}

.cmp-head {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.4rem;
}

.cmp-col.without .cmp-head {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .45);
}

.cmp-col.with .cmp-head {
  background: var(--sage);
  color: var(--white);
}

.cmp-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .72rem;
}

.cmp-items li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.55;
}

.cmp-col.without .cmp-items li::before {
  content: '✗';
  color: rgba(255, 100, 100, .7);
  flex-shrink: 0;
}

.cmp-col.with .cmp-items li::before {
  content: '✓';
  color: var(--sage-light);
  flex-shrink: 0;
}

/* ── GARANTIA ── */
.guarantee {
  background: var(--navy-mid);
  padding: 5rem 1.5rem;
}

.guar-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}

.guar-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.guar-img-seal {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .15));
}

.guar-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: .75rem;
}

.guar-content p {
  font-size: .97rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.82;
  margin-bottom: .75rem;
}

.guar-content p strong {
  color: var(--white);
}

@media(max-width:768px) {
  .guar-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guar-content .divider {
    margin-left: auto;
  }

  .guar-img-seal {
    max-width: 180px;
    margin: 0 auto;
  }
}

/* ── FAQ ── */
.faq {
  background: var(--navy);
  padding: 5rem 1.5rem;
}

.faq .section-header h2 {
  color: var(--white);
}

.faq .section-header p {
  color: rgba(255, 255, 255, .45);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}

.faq-q:hover {
  background: rgba(255, 255, 255, .03);
}

.faq-q span {
  font-size: .93rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
  flex: 1;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(109, 153, 96, .18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-ans-inner {
  padding: .2rem 1.5rem 1.2rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.8;
}

.faq-item.open .faq-ans {
  max-height: 600px;
}

/* ── OBJEÇÕES ── */
.objections {
  background: var(--navy);
  padding: 5rem 1.5rem;
}

.objections .section-header h2 {
  color: var(--white);
}

.objections .section-header p {
  color: rgba(255, 255, 255, .55);
}

.obj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.obj-card {
  background: rgba(255, 255, 255, .05);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--gold);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-right: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.obj-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: .75rem;
  letter-spacing: .02em;
}

.obj-card p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
}

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

/* ── SUPORTE ── */
.support {
  background: var(--navy-mid);
  padding: 5rem 1.5rem;
}

.support .section-header h2 {
  color: var(--white);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.support-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 1.5rem;
}

.support-dot {
  width: 9px;
  height: 9px;
  background: var(--sage-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .35rem;
}

.support-card p {
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

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

/* ── ARGUMENTOS RACIONAIS ── */
.rational {
  background: #01060e;
  padding: 5rem 1.5rem;
}

.rational .section-header h2 {
  color: var(--white);
}

.rational .section-header p {
  color: rgba(255, 255, 255, .55);
}

.rational-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.rational-card {
  background: rgba(255, 255, 255, .05);
  border-radius: 10px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, .07);
  border-top: 3px solid var(--sage);
}

.rational-card p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.72;
}

.rational-card p strong {
  color: var(--white);
}

/* ── DORES E DESEJOS ── */
.pain-desire {
  background: var(--navy);
  padding: 5rem 1.5rem;
}

.pain-desire .section-header h2 {
  color: var(--white);
}

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.pd-col {
  border-radius: 12px;
  padding: 2rem;
}

.pd-col.pain {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
}

.pd-col.desire {
  background: rgba(122,150,104,.12);
  border: 1px solid rgba(122,150,104,.3);
}

.pd-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.pd-col.desire .pd-head {
  border-color: rgba(122,150,104,.3);
  color: var(--sage-light);
}

.pd-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.pd-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}

.pd-col.pain .pd-list li::before {
  content: '·';
  color: rgba(255,100,100,.8);
  font-size: 1.4rem;
  line-height: 1.1;
  flex-shrink: 0;
}

.pd-col.desire .pd-list li::before {
  content: '→';
  color: var(--sage-light);
  flex-shrink: 0;
}

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

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(140deg, var(--dark) 0%, var(--navy) 100%);
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(109, 153, 96, .1) 0%, transparent 68%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.75;
  margin-bottom: 2.4rem;
}

.final-sub {
  margin-top: 1.4rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .28) !important;
  margin-bottom: 0 !important;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 2.4rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-logo {
  height: 92px;
  margin-bottom: .9rem;
}


.footer p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .25);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .fw-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .hero-img-wrap {
    order: -1;
  }

  .hero-trust {
    justify-content: center;
  }

  .auth-grid {
    grid-template-columns: 1fr;
  }

  .authority .section-header {
    text-align: center;
  }

  .auth-img-wrap::after {
    display: none;
  }
}

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

  .cmp-grid {
    grid-template-columns: 1fr;
  }
}

/* ── HERO MOBILE ── */
@media(max-width:768px) {
  .hero {
    background-image: url('assets/bg-hero2.jpg');
    background-position: center top;
    align-items: stretch;
    min-height: 100svh;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(8, 15, 34, .97) 0%,
      rgba(8, 15, 34, .80) 38%,
      rgba(8, 15, 34, .10) 60%,
      transparent 100%
    );
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: calc(64vh - 50px) 1.5rem 3rem;
    gap: 0;
    align-items: end;
  }

  .hero-img-wrap {
    display: none;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-eyebrow {
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    right: 1rem;
    justify-content: center;
    white-space: normal;
    text-align: center;
    z-index: 2;
  }

  .hero h1 {
    margin-top: 50px;
  }

  .hero h1 br {
    display: none;
  }
}

/* ── TELAS PEQUENAS (≤ 400px) ── */
@media(max-width: 400px) {
  /* Hero */
  .hero-container {
    padding: calc(60vh - 50px) 1.2rem 2.5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
    margin-top: 36px;
  }

  .hero-sub {
    font-size: .92rem;
  }

  .hero-eyebrow {
    font-size: .55rem;
    padding: .3rem .8rem;
  }

  .btn {
    font-size: .82rem;
    padding: 1rem 1.6rem;
  }

  /* Seções gerais */
  .pre-video,
  .for-whom,
  .how,
  .offer,
  .testimonials,
  .big-quote,
  .authority,
  .comparison,
  .guarantee,
  .faq,
  .final-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Grid identificação → 1 coluna */
  .fw-grid {
    grid-template-columns: 1fr;
  }

  /* Offer layout → 1 coluna */
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .offer-features {
    order: -1;
  }

  /* Seção 2 */
  .pre-video-photo {
    height: 280px;
  }

  .pre-video-head h2 {
    font-size: 1.35rem;
  }

  /* Garantia */
  .guar-grid {
    grid-template-columns: 1fr;
  }

  .guar-img-seal {
    max-width: 140px;
  }

  /* Quote */
  .big-quote {
    min-height: 400px;
  }

  .big-quote blockquote {
    padding: 1.8rem;
  }

  .big-quote blockquote p {
    font-size: 1.15rem;
  }
}

/* ═══════════ WhatsApp Float ═══════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

