/* ============================================================
   GUIA DEFINITIVO DA COLORIMETRIA CAPILAR — landing page
   Palette: warm sand ground · espresso text · copper action · antique gold lines
   ============================================================ */

:root {
  /* committed palette */
  --ground:     #F6F0E7;  /* warm sand / areia */
  --ground-2:   #EFE6D7;  /* deeper sand for alternating bands */
  --paper:      #FBF7F0;  /* lifted card surface */
  --text:       #2B211C;  /* deep espresso */
  --text-soft:  #6B5D52;  /* muted brown for body */
  --accent:     #B06A3A;  /* copper — the action color */
  --accent-dk:  #8C4F28;  /* darker copper for hovers */
  --gold:       #C9A24B;  /* antique gold — hairlines & highlights only */
  --ink:        #241B16;  /* near-black warm for dark sections */
  --ink-2:      #2F241D;

  /* underlying-pigment / lift colors (real colorimetry sequence) */
  --lift-1: #1c1410;  /* preto */
  --lift-2: #4a2c1c;  /* castanho */
  --lift-3: #8a2f22;  /* vermelho */
  --lift-4: #c0612a;  /* laranja */
  --lift-5: #d98a2b;  /* laranja-amarelado */
  --lift-6: #e6b53f;  /* amarelo */
  --lift-7: #f0d36a;  /* amarelo claro */
  --lift-8: #f6e6ab;  /* amarelo pálido */

  --maxw: 1140px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 50px -28px rgba(43, 33, 28, 0.45);
  --shadow-lg: 0 40px 90px -40px rgba(43, 33, 28, 0.55);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}

p { margin: 0; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.container--narrow { max-width: 800px; }

.section { padding-block: clamp(64px, 9vw, 120px); }

.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.sec-title {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  margin-top: 0.4rem;
}
.sec-title--light { color: var(--paper); }
.sec-lead {
  margin-top: 1.1rem;
  color: var(--text-soft);
  font-size: 1.08rem;
}

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--gold { color: var(--gold); }
.eyebrow--gold::before { background: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
  padding: 1.05em 1.9em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  box-shadow: 0 14px 30px -12px rgba(140, 79, 40, 0.7);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), filter 0.3s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.28), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -14px rgba(140, 79, 40, 0.8);
  filter: saturate(1.08);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(-1px); }
.btn__arrow { transition: transform 0.4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(5px); }
.btn--block { width: 100%; }
.btn--pulse { animation: btnpulse 2.6s ease-in-out infinite; }

@keyframes btnpulse {
  0%, 100% { box-shadow: 0 14px 30px -12px rgba(140,79,40,0.7), 0 0 0 0 rgba(176,106,58,0.45); }
  50%      { box-shadow: 0 14px 30px -12px rgba(140,79,40,0.7), 0 0 0 14px rgba(176,106,58,0); }
}

/* ---------- shared tick / star ---------- */
.tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(176,106,58,0.14);
  position: relative;
  margin-top: 2px;
}
.tick::after {
  content: "";
  position: absolute;
  left: 7px; top: 5px;
  width: 5px; height: 9px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.tick--copper { background: rgba(176,106,58,0.18); }

/* ===========================================================
   TOP BAR
   =========================================================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem clamp(20px, 5vw, 48px);
  background: rgba(246, 240, 231, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(43,33,28,0.07);
}
.topbar__brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.topbar__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}
.topbar__name-accent { color: var(--accent); }
.topbar__star {
  width: 22px; height: 22px;
  flex: none;
  background:
    conic-gradient(from 0deg,
      #e6b53f 0deg 60deg, #c0612a 60deg 120deg, #8a2f22 120deg 180deg,
      #6f3f8f 180deg 240deg, #2f5fa0 240deg 300deg, #3f7a55 300deg 360deg);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--ground), 0 0 0 1px rgba(43,33,28,0.12);
}
.topbar__cta {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.5em 1.15em;
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.topbar__cta:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 90px);
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(201,162,75,0.16), transparent 55%),
    radial-gradient(90% 70% at 0% 100%, rgba(176,106,58,0.10), transparent 60%),
    var(--ground);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(43,33,28,0.045) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  opacity: 0.6;
}
.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(32px, 4.5vw, 64px);
  align-items: center;
}
.hero__title {
  font-size: clamp(1.7rem, 7.2vw, 4rem);
  margin-top: 1.1rem;
}
.hero__title-line,
.hero__title-em {
  display: block;
  white-space: nowrap;   /* "Guia Definitivo da" never breaks to two lines */
}
.hero__title-em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero__sub {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--text-soft);
  max-width: 36ch;
}
.hero__bullets {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.hero__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 500;
  font-size: 1.02rem;
}
.hero__actions {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hero__micro { font-size: 0.85rem; color: var(--text-soft); }

/* hero visual — the guide in a professional's hands */
.hero__visual { display: flex; justify-content: center; padding: 24px 22px 16px; }
.hero-photo {
  position: relative;
  margin: 0;
  width: min(480px, 100%);
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease);
}
/* soft copper/gold pad offset behind the frame for depth */
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 22px -18px -22px 22px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(150deg, rgba(201,162,75,0.55), rgba(176,106,58,0.4));
  z-index: -1;
  transition: transform 0.6s var(--ease);
}
.hero-photo:hover { transform: rotate(0deg) translateY(-5px); }
.hero-photo:hover::before { transform: translate(6px, 6px); }

/* paper mat + gold hairline, matching the gallery/offer frames */
.hero-photo__frame {
  padding: 12px;
  background: var(--paper);
  border: 1px solid rgba(201,162,75,0.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-photo__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius) - 6px);
}

/* floating gold badge (kept from the original visual) */
.hero-photo__badge {
  position: absolute;
  top: -16px; right: -14px;
  background: linear-gradient(135deg, var(--gold), #b88a2f);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.5em 0.95em;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
  animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50%      { transform: rotate(4deg) translateY(-6px); }
}

/* frosted caption chip, bottom-left */
.hero-photo__tag {
  position: absolute;
  left: -16px; bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(6px);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.6em 1em;
  border-radius: 999px;
  border: 1px solid rgba(201,162,75,0.4);
  box-shadow: var(--shadow);
}
.hero-photo__tag-star {
  width: 16px; height: 16px;
  flex: none;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      #e6b53f 0deg 60deg, #c0612a 60deg 120deg, #8a2f22 120deg 180deg,
      #6f3f8f 180deg 240deg, #2f5fa0 240deg 300deg, #3f7a55 300deg 360deg);
  box-shadow: inset 0 0 0 2px var(--paper);
}

/* ===========================================================
   MARQUEE divider
   =========================================================== */
.marquee {
  width: 100%;
  background: var(--ink);
  color: var(--ground);
  padding-block: 0.95rem;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
/* two identical groups → translating exactly -50% loops seamlessly */
.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-right: 1.6rem;   /* spacing carries across the seam */
  flex: none;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  white-space: nowrap;
}
.marquee__group span { flex: none; }
.marquee__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================================================
   SECTION 2 — RECEBER (cards)
   =========================================================== */
.section--receber { background: var(--ground); }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(43,33,28,0.07);
  border-radius: var(--radius);
  padding: 2rem 1.7rem 1.9rem;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(var(--accent), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201,162,75,0.4);
}
.card:hover::before { transform: scaleY(1); }
.card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(176,106,58,0.32);
  line-height: 1;
}
.card__title {
  font-size: 1.32rem;
  margin: 0.7rem 0 0.5rem;
}
.card__text { color: var(--text-soft); font-size: 0.98rem; }

.card--quote {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  border-color: transparent;
  display: flex;
  align-items: center;
}
.card--quote::before { display: none; }
.card__quote {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ground);
}
.card__quote em { color: var(--gold); font-style: italic; }

/* ===========================================================
   SECTION 3 — DARK (benefits)
   =========================================================== */
.section--dark {
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(176,106,58,0.18), transparent 55%),
    radial-gradient(70% 60% at 0% 100%, rgba(201,162,75,0.10), transparent 55%),
    var(--ink);
  color: var(--ground);
}
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}
.benefit {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(201,162,75,0.16);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease);
}
.benefit:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,162,75,0.4);
}
.benefit--wide { grid-column: 1 / -1; }
.benefit__title {
  font-size: 1.32rem;
  color: var(--paper);
  margin-bottom: 0.45rem;
}
.benefit__text { color: rgba(246,240,231,0.74); font-size: 0.98rem; }
.benefit__icon {
  display: inline-flex;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(176,106,58,0.9), rgba(140,79,40,0.9));
  margin-bottom: 1.1rem;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(201,162,75,0.4);
}
/* simple CSS glyphs inside icon tiles */
.benefit__icon::before, .benefit__icon::after { content: ""; position: absolute; }
.benefit__icon--shield::before { left:50%; top:50%; width:18px; height:21px; transform:translate(-50%,-52%); border:2px solid #fff; border-radius:4px 4px 8px 8px / 4px 4px 12px 12px; }
.benefit__icon--drop::before { left:50%; top:48%; width:16px; height:16px; transform:translate(-50%,-50%) rotate(45deg); border:2px solid #fff; border-radius:0 50% 50% 50%; }
.benefit__icon--star::before { left:50%; top:50%; width:20px; height:20px; transform:translate(-50%,-50%); border:2px solid #fff; border-radius:50%; }
.benefit__icon--star::after { left:50%; top:50%; width:2px; height:22px; transform:translate(-50%,-50%); background:#fff; box-shadow:0 0 0 0 #fff; border-radius:2px; }
.benefit__icon--grid::before { left:50%; top:50%; width:20px; height:20px; transform:translate(-50%,-50%); border:2px solid #fff; }
.benefit__icon--grid::after { left:50%; top:50%; width:20px; height:2px; transform:translate(-50%,-50%); background:#fff; box-shadow:0 -7px 0 #fff, 0 7px 0 #fff; }
.benefit__icon--check::before { left:50%; top:46%; width:9px; height:16px; transform:translate(-55%,-50%) rotate(45deg); border:solid #fff; border-width:0 2.5px 2.5px 0; }

.transition {
  margin: clamp(40px, 6vw, 64px) auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.4;
  color: rgba(246,240,231,0.8);
}
.transition__em { color: var(--gold); font-style: italic; display: block; margin-top: 0.3rem; }
.transition--soft {
  color: var(--text-soft);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
}

/* ===========================================================
   SECTION 4 — BONUS
   =========================================================== */
.section--bonus { background: var(--ground-2); }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.bonus {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(201,162,75,0.3);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem 1.9rem;
  text-align: center;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.bonus:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.bonus__tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45em 1.1em;
  border-radius: 999px;
  white-space: nowrap;
}
.bonus__art {
  display: block;
  width: 84px; height: 84px;
  margin: 0.6rem auto 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ground), var(--ground-2));
  border: 1px solid rgba(201,162,75,0.45);
  position: relative;
  overflow: hidden;
}
.bonus__art--table::before,
.bonus__art--table::after {
  content: ""; position: absolute; left: 18px; right: 18px;
  height: 8px; border-radius: 3px;
}
.bonus__art--table::before { top: 24px; background: var(--lift-4); box-shadow: 0 14px 0 var(--lift-6), 0 28px 0 var(--lift-2); }
.bonus__art--table::after  { display: none; }

.bonus__art--check::before {
  content: ""; position: absolute; left: 36px; top: 28px;
  width: 11px; height: 20px; border: solid var(--accent);
  border-width: 0 3px 3px 0; transform: rotate(45deg);
}
.bonus__art--check::after {
  content: ""; position: absolute; left: 20px; top: 20px; right: 20px; bottom: 20px;
  border: 2px dashed rgba(176,106,58,0.4); border-radius: 6px;
}
.bonus__art--wheel::before {
  content: ""; position: absolute; inset: 20px; border-radius: 50%;
  background: conic-gradient(from 0deg,
    #e6b53f, #c0612a, #8a2f22, #6f3f8f, #2f5fa0, #3f7a55, #e6b53f);
}
.bonus__art--wheel::after {
  content: ""; position: absolute; inset: 34px; border-radius: 50%;
  background: var(--paper);
}
.bonus__title { font-size: 1.18rem; margin-bottom: 0.5rem; }
.bonus__text { color: var(--text-soft); font-size: 0.95rem; }
.bonus__value {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.bonus__value s { color: rgba(107,93,82,0.7); }
.bonus__value strong { color: var(--accent); font-weight: 600; }

/* ===========================================================
   SECTION 5 — OFFER
   =========================================================== */
.offer {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 9vw, 110px);
  background:
    radial-gradient(90% 70% at 50% 0%, rgba(176,106,58,0.22), transparent 60%),
    var(--ink);
  color: var(--ground);
  scroll-margin-top: 70px;
}
.offer__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,162,75,0.06) 1px, transparent 1px);
  background-size: 5px 5px;
  pointer-events: none;
}

/* countdown timer */
.timer {
  max-width: 520px;
  margin: 0 auto clamp(34px, 5vw, 48px);
  text-align: center;
}
.timer__label {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.timer__clock {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.timer__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,75,0.3);
  border-radius: 14px;
  padding: 0.7rem 1.2rem 0.6rem;
  min-width: 96px;
}
.timer__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.timer__cap {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246,240,231,0.6);
  margin-top: 0.5rem;
}
.timer__sep {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3rem);
  color: var(--accent);
  line-height: 1.2;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }

/* offer card */
.offer__card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  max-width: 940px;
  margin-inline: auto;
  background: var(--paper);
  color: var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,162,75,0.4);
}
.offer__left { padding: clamp(28px, 4vw, 44px); }
.offer__pitch {
  font-family: var(--font-display);
  font-size: 1.32rem;
  line-height: 1.4;
  margin-bottom: 1.4rem;
}
.offer__pitch strong { color: var(--accent); font-weight: 600; }
.offer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.offer__list li { display: flex; align-items: flex-start; gap: 0.7rem; font-weight: 500; font-size: 0.98rem; }

.offer__right {
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(160deg, var(--ground) 0%, var(--ground-2) 100%);
  border-left: 1px dashed rgba(176,106,58,0.4);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer__from { color: var(--text-soft); font-weight: 500; }
.offer__from s { color: rgba(107,93,82,0.8); }
.offer__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.1rem;
  color: var(--accent);
  margin: 0.3rem 0 0.1rem;
  line-height: 1;
}
.offer__cur { font-family: var(--font-display); font-size: 1.5rem; margin-top: 0.7rem; }
.offer__big { font-family: var(--font-display); font-weight: 600; font-size: clamp(4rem, 11vw, 5.6rem); }
.offer__cents { font-family: var(--font-display); font-size: 1.6rem; margin-top: 0.7rem; }
.offer__terms { font-size: 0.86rem; color: var(--text-soft); margin-bottom: 1.4rem; }
.offer__micro { font-size: 0.8rem; color: var(--text-soft); margin-top: 0.9rem; }
.offer__seals {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}
.seal {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
  background: rgba(176,106,58,0.08);
  padding: 0.35em 0.8em;
  border-radius: 999px;
}

/* ===========================================================
   SECTION 6 — GALLERY / CAROUSEL
   =========================================================== */
.section--gallery { background: var(--ground); }
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 980px;
  margin-inline: auto;
}
.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  flex: 1;
}
.carousel__track {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.6s var(--ease);
}
.slide {
  flex: 0 0 100%;
  padding: clamp(20px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slide__chip {
  align-self: flex-start;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(176,106,58,0.1);
  padding: 0.35em 0.8em;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.slide__art {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
  background: var(--paper);
  border: 1px solid rgba(201,162,75,0.35);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
/* every image fills the identical frame uniformly, whatever its native ratio */
.slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide__cap {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
}

/* carousel controls */
.carousel__nav {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(176,106,58,0.5);
  background: var(--paper);
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel__nav:hover { background: var(--accent); color: #fff; transform: scale(1.08); }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(176,106,58,0.28);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), width 0.3s var(--ease);
}
.dot:hover { background: rgba(176,106,58,0.55); }
.dot--active { background: var(--accent); width: 26px; border-radius: 999px; }

.gallery__note {
  max-width: 640px;
  margin: clamp(34px, 5vw, 48px) auto 0;
  text-align: center;
  color: var(--text-soft);
  font-style: italic;
}

/* ===========================================================
   SECTION 7 — DEPOIMENTOS
   =========================================================== */
.section--depo { background: var(--ground-2); }
.depos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.depo {
  background: var(--paper);
  border: 1px solid rgba(43,33,28,0.07);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.depo:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.depo__stars { color: var(--gold); letter-spacing: 0.15em; font-size: 1.05rem; margin-bottom: 1rem; }
.depo__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  margin: 0 0 1.4rem;
  color: var(--text);
}
.depo__by { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.depo__avatar {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}
.depo__id { display: flex; flex-direction: column; line-height: 1.3; }
.depo__id strong { font-weight: 600; }
.depo__id em { font-style: normal; font-size: 0.85rem; color: var(--text-soft); }
.depo__disclaimer {
  text-align: center;
  margin-top: clamp(28px, 4vw, 40px);
  font-size: 0.82rem;
  color: var(--text-soft);
  font-style: italic;
}

/* ===========================================================
   SECTION 8 — GUARANTEE
   =========================================================== */
.section--guarantee { background: var(--ground); }
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(201,162,75,0.4);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow);
}
.guarantee__seal {
  position: relative;
  width: 150px; height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d9b35a, var(--gold) 55%, #a87f2c);
  color: var(--ink);
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255,255,255,0.3);
  justify-self: center;
}
.guarantee__seal-days { font-family: var(--font-display); font-weight: 600; font-size: 3.4rem; line-height: 0.9; }
.guarantee__seal-label { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.78rem; }
.guarantee__seal-ring {
  position: absolute; inset: 10px;
  border: 2px dashed rgba(43,33,28,0.35);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.guarantee__title { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin: 0.4rem 0 0.8rem; }
.guarantee__text { color: var(--text-soft); max-width: 56ch; }
.guarantee__points {
  list-style: none; margin: 1.3rem 0 1.8rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem;
}
.guarantee__points li { display: flex; align-items: center; gap: 0.55rem; font-weight: 500; }

/* ===========================================================
   SECTION 9 — FAQ
   =========================================================== */
.section--faq { background: var(--ground-2); }
.faq { display: grid; gap: 0.9rem; }
.faq__item {
  background: var(--paper);
  border: 1px solid rgba(43,33,28,0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq__item[open] { border-color: rgba(201,162,75,0.5); box-shadow: var(--shadow); }
.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  flex: none;
  position: relative;
  width: 20px; height: 20px;
}
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--accent);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.faq__icon::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq__icon::after  { left: 9px; top: 0; width: 2px; height: 20px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  color: var(--text-soft);
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq__item[open] .faq__a { max-height: 320px; padding: 0 1.5rem 1.3rem; }

.faq__cta {
  text-align: center;
  margin-top: clamp(36px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.faq__cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--ink);
  color: rgba(246,240,231,0.7);
  padding-block: clamp(36px, 5vw, 52px);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
.footer__brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer__brand .topbar__name { color: var(--paper); }
.footer__brand .topbar__star { box-shadow: inset 0 0 0 3px var(--ink), 0 0 0 1px rgba(201,162,75,0.3); }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; }
.footer__nav a {
  font-size: 0.92rem;
  color: rgba(246,240,231,0.75);
  position: relative;
  transition: color 0.3s var(--ease);
}
.footer__nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.footer__nav a:hover { color: var(--paper); }
.footer__nav a:hover::after { transform: scaleX(1); }
.footer__copy { font-size: 0.85rem; color: rgba(246,240,231,0.5); }

/* ===========================================================
   STICKY MOBILE CTA
   =========================================================== */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff;
  padding: 0.7rem 0.8rem 0.7rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 16px 36px -10px rgba(43,33,28,0.6);
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}
.sticky-cta--show { transform: translateY(0); }
.sticky-cta__price { font-weight: 600; line-height: 1.1; }
.sticky-cta__price s { display: block; font-size: 0.72rem; opacity: 0.7; font-weight: 400; }
.sticky-cta__btn {
  background: rgba(255,255,255,0.16);
  padding: 0.7em 1.2em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}

/* ===========================================================
   SCROLL REVEAL
   =========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__bullets { justify-items: start; max-width: 30rem; margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: -1; margin-bottom: 0.8rem; }
  .hero-photo { transform: none; width: min(360px, 100%); }
  .hero-photo:hover { transform: translateY(-5px); }
  .hero-photo::before { inset: 16px -12px -16px 16px; }
  .hero-photo__badge { right: 2px; top: -14px; }
  .hero-photo__tag { left: 2px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .depos { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .offer__card { grid-template-columns: 1fr; }
  .offer__right { border-left: none; border-top: 1px dashed rgba(176,106,58,0.4); }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .guarantee__points { justify-content: center; }
}

@media (max-width: 600px) {
  .cards { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .benefit--wide { grid-column: auto; }
  .sec-head { margin-bottom: 36px; }
  .topbar__cta { display: none; }
  .topbar__name { font-size: 1rem; }
  .sticky-cta { display: flex; }
  .marquee__track { font-size: 0.95rem; }
  .hero__title { letter-spacing: -0.025em; }
  body { padding-bottom: 4.8rem; }
}

/* keep long words from ever breaking the layout on tiny screens */
.hero__title, .sec-title, .card__title, .benefit__title, .bonus__title,
.faq__q, .offer__pitch { overflow-wrap: break-word; }

/* ===========================================================
   REDUCED MOTION
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
