/* Marmorização · Du Nunes — tema claro derivado do design system da área de membros
   (caramelo / pêssego / creme / espresso, serif itálica de destaque). Mesma estrutura de componentes do styles.css. */

:root {
  --caramel: #e39c63;
  --caramel-dark: #b8733f;
  --peach: #f3bc8f;
  --cream: #faf7f3;
  --sand: #f1e6da;
  --espresso: #2a1f19;
  --cocoa: #6b5648;
  --white: #ffffff;
  --line: rgba(42, 31, 25, .12);
  --line-light: rgba(255, 255, 255, .16);
  --radius: 18px;
  --shadow: 0 18px 60px rgba(42, 31, 25, .12);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; color: var(--espresso); background: var(--cream); font-family: Inter, Arial, sans-serif; font-size: 1rem; line-height: 1.55; overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { color: var(--espresso); font-weight: 800; line-height: 1.04; letter-spacing: -.025em; overflow-wrap: break-word; }
h1 { font-size: clamp(2.6rem, 4.6vw, 4.2rem); max-width: 17ch; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h2 + p { margin-top: 20px; }
.accent { font-family: "Playfair Display", Georgia, serif; font-style: italic; font-weight: 500; letter-spacing: 0; color: var(--caramel-dark); }
:focus-visible { outline: 3px solid var(--espresso); outline-offset: 2px; box-shadow: 0 0 0 6px var(--cream); }

.container { width: min(82%, var(--container)); margin-inline: auto; }
.container.narrow { max-width: 780px; }
.skip-link { position: absolute; left: -9999px; top: 12px; z-index: 10; }
.skip-link:focus { left: 12px; }

.site-header { border-bottom: 1px solid var(--line); background: rgba(250, 247, 243, .94); }
.site-header .container { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: baseline; gap: 8px; color: var(--espresso); font-weight: 800; letter-spacing: -.02em; text-decoration: none; font-size: 1.15rem; }
.brand .accent { font-size: 1.35rem; }
nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 34px); }
nav a { color: var(--cocoa); font-size: .9rem; text-decoration: none; }
nav a:hover { color: var(--caramel-dark); }

.button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border: 1px solid var(--caramel); border-radius: 999px;
  color: var(--espresso); background: var(--caramel); font: 600 .95rem/1 Inter, sans-serif;
  text-decoration: none; cursor: pointer; transition: background-color .2s, border-color .2s, color .2s;
}
.button:hover { border-color: var(--espresso); background: var(--espresso); color: var(--cream); }
.button--block { width: 100%; }

/* Hero: texto à esquerda, retrato do Du à direita dissolvendo no creme (mesma técnica de máscara do Salão Digital) */
.hero { position: relative; isolation: isolate; overflow: hidden; min-height: min(calc(100svh - 77px), 720px); display: grid; align-items: center; padding: clamp(40px, 6vh, 72px) 0; background-color: var(--cream); }
.hero::before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; z-index: -2; width: min(46%, 620px); pointer-events: none; background: url("assets/marmorizacao/du-hero.jpg") center 18% / cover no-repeat; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 36%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 36%, #000 100%); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: linear-gradient(90deg, var(--cream) 0%, var(--cream) 44%, rgba(250,247,243,.4) 56%, rgba(250,247,243,0) 68%); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 580px); }
.hero h1 { max-width: 14ch; }
.eyebrow { margin-bottom: 18px; color: var(--caramel-dark); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.lead { max-width: 560px; margin-top: 24px; color: var(--cocoa); font-size: clamp(1.1rem, 2vw, 1.3rem); }
.hero .check-list { max-width: 560px; margin: 26px 0 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.microcopy { margin-top: 13px; color: var(--cocoa); font-size: .8rem; }

.check-list { display: grid; gap: 12px; margin: 24px 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list li::before { content: "✓"; flex: none; color: var(--caramel-dark); font-weight: 800; }
.x-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; color: var(--cocoa); }
.x-list li { display: flex; gap: 10px; align-items: flex-start; }
.x-list li::before { content: "✗"; flex: none; color: var(--caramel-dark); font-weight: 800; }

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--sand { background: var(--sand); }
.section--dark { color: var(--cream); background: var(--espresso); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--peach); }
.section--dark .accent { color: var(--peach); }
.section-action { margin-top: 30px; text-align: center; }
.section-action .button, .final-cta .button { width: 320px; max-width: 100%; }

/* Identificação: dores × transformação */
.compare { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 36px; }
.compare > div { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.compare h3 { margin-bottom: 18px; }
.compare__after { border-color: var(--caramel); background: #fbeee0; }

/* Objeções */
.objections__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 38px; }
.objections article { position: relative; padding: 74px 26px 26px; border-top: 2px solid var(--caramel); background: var(--white); border-radius: 0 0 var(--radius) var(--radius); }
.objections article p { margin-top: 14px; color: var(--cocoa); }
.objection__x { position: absolute; top: 26px; left: 26px; width: 28px; height: 28px; }
.objection__x::before, .objection__x::after { content: ""; position: absolute; top: 13px; left: 0; width: 28px; height: 3px; border-radius: 2px; background: var(--caramel); transform: rotate(45deg); }
.objection__x::after { transform: rotate(-45deg); }

/* Solução: mecanismo + mockup em HTML puro (lista de aulas dentro do "notebook") */
.editorial { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(38px, 8vw, 110px); }
.editorial > div > p:not(.eyebrow) { color: var(--cocoa); }
.platform-mockup { position: relative; width: min(100%, 640px); margin: 0; padding: 0 0 6% 0; }
.platform-mockup__laptop { position: relative; padding: 2.6%; border: 1px solid #cdbfb2; border-radius: 16px 16px 8px 8px; background: #1c1512; box-shadow: var(--shadow); }
.platform-mockup__laptop::before { content: ""; position: absolute; bottom: -5%; left: -5%; width: 110%; height: 7%; border-radius: 0 0 999px 999px; background: linear-gradient(#d9cfc4, #a4958a); }
.platform-mockup__screen { border-radius: 6px; overflow: hidden; background: var(--cream); display: grid; grid-template-columns: 34% 1fr; min-height: 300px; }
.mock-side { padding: 18px 16px; background: var(--caramel); color: var(--espresso); font-size: .72rem; font-weight: 700; line-height: 1.3; }
.mock-side span { display: block; margin-top: 14px; font-weight: 500; opacity: .85; }
.mock-main { padding: 16px 18px; }
.mock-main strong { display: block; font-size: .78rem; margin-bottom: 10px; }
.mock-main ol { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; font-size: .68rem; color: var(--cocoa); }
.mock-main li { display: flex; justify-content: space-between; gap: 10px; padding: 7px 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.mock-main li.is-key { border-color: var(--caramel); background: #fbeee0; color: var(--espresso); font-weight: 700; }

/* Grade de aulas */
.module-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 42px; }
.module { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); display: grid; align-content: start; gap: 10px; }
.module__number { color: var(--caramel-dark); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.module__meta { color: var(--cocoa); font-size: .8rem; }
.module p { color: var(--cocoa); }
.module--key { border-color: var(--caramel); background: var(--caramel); }
.module--key .module__number, .module--key .module__meta, .module--key p { color: var(--espresso); }
.module__tag { display: inline-block; width: fit-content; padding: 5px 10px; border-radius: 999px; background: var(--espresso); color: var(--peach); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.module__quote { font-weight: 600; font-size: 1rem; color: var(--espresso) !important; }
.closing-line { margin-top: 34px; text-align: center; color: var(--cocoa); font-size: 1.05rem; }

/* Prova de produto */
.proof-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); align-items: center; gap: clamp(32px, 6vw, 80px); }
.result-photo { margin: 0; }
.result-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 30%; border-radius: var(--radius); box-shadow: var(--shadow); }
.result-photo figcaption { margin-top: 12px; color: var(--cocoa); font-size: .85rem; }
.product-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 34px 0; }
.product-stats p { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.product-stats strong, .product-stats span { display: block; }
.product-stats strong { color: var(--caramel-dark); font-size: 1.15rem; line-height: 1.2; }
.product-stats span { margin-top: 7px; color: var(--cocoa); font-size: .8rem; }

/* Autoridade: citação do Du */
.bio-photo { margin: 28px 0 0; max-width: 360px; }
.bio-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; border-radius: var(--radius); box-shadow: var(--shadow); }
.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); align-items: start; gap: clamp(38px, 8vw, 110px); }
.quote { margin: 0; font-family: Inter, sans-serif; font-weight: 500; font-size: clamp(1.15rem, 1.7vw, 1.45rem); line-height: 1.55; color: var(--espresso); }
.quote p { position: relative; padding-left: 26px; }
.quote p::before { content: "“"; position: absolute; left: 0; top: -6px; font-family: "Playfair Display", Georgia, serif; font-size: 2.6rem; line-height: 1; color: var(--caramel-dark); }
.quote footer { margin-top: 18px; padding-left: 26px; font-weight: 700; font-size: .9rem; color: var(--caramel-dark); }
.authority { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--cocoa); font-size: .85rem; font-weight: 600; }

/* Oferta */
.offer { padding: clamp(72px, 10vw, 128px) 0; color: var(--cream); background: var(--espresso); }
.offer h2 { color: var(--white); }
.offer .eyebrow { color: var(--peach); }
.offer__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); align-items: center; gap: clamp(38px, 8vw, 110px); }
.offer__card { padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line-light); border-radius: var(--radius); background: rgba(255,255,255,.05); box-shadow: var(--shadow); }
.offer__price { margin: 8px 0 18px; color: var(--peach); font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1; }
.offer__price span { display: block; margin-top: 8px; font-size: .95rem; font-weight: 500; color: rgba(250,247,243,.7); }
.offer .check-list li::before { color: var(--peach); }
.offer .button { border-color: var(--caramel); }
.payback { margin-top: 22px; color: rgba(250,247,243,.8); font-size: .95rem; }
.guarantee { margin-top: 28px; padding: 22px 24px; border: 1px solid var(--line-light); border-radius: 14px; color: rgba(250,247,243,.85); }
.guarantee strong { color: var(--peach); }
.secure { margin-top: 12px; color: rgba(250,247,243,.6); font-size: .85rem; }

/* Para quem */
.fit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 42px; }
.fit-grid > * { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.fit-grid p { margin-top: 10px; color: var(--cocoa); }

/* FAQ */
.faq-list { display: grid; gap: 10px; margin-top: 32px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 18px 0; cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--caramel-dark); font-weight: 800; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding: 0 28px 18px 0; color: var(--cocoa); }

.section-cta, .final-cta { text-align: center; }
.final-cta p { margin: 12px 0 20px; color: var(--cocoa); }
.footer { padding: 42px 0; border-top: 1px solid var(--line); color: var(--cocoa); font-size: .85rem; text-align: center; }
.footer .container { display: grid; gap: 7px; justify-items: center; }
.footer .brand { margin-bottom: 6px; }

@media (max-width: 900px) {
  .offer__grid, .split, .editorial, .proof-grid { grid-template-columns: minmax(0, 1fr); }
  .module-grid, .fit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .objections__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  h1 { font-size: 2rem; }
  .site-header .container { min-height: 60px; }
  .site-header nav { display: none; }
  /* Mobile: foto inteira em 4:5 no topo (sem corte agressivo), dissolvendo no creme só na base; texto abaixo */
  .hero { padding-block: 0 40px; min-height: 0; }
  .hero::before { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 1 / 1; z-index: 0; background-position: center 8%; -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%); mask-image: linear-gradient(180deg, #000 0%, #000 68%, transparent 100%); }
  .hero::after { display: none; }
  .hero__grid { margin-top: -34px; }
  .hero h1 { max-width: none; }
  .hero .lead { margin-top: 14px; font-size: .98rem; }
  .hero__actions { margin-top: 20px; }
  .lead { margin-top: 18px; font-size: 1rem; }
  .hero__actions { margin-top: 24px; }
  .hero__actions, .hero__actions .button { width: 100%; }
  .compare, .module-grid, .fit-grid, .product-stats { grid-template-columns: minmax(0, 1fr); }
  .editorial > *, .split > *, .proof-grid > *, .hero__grid > * { min-width: 0; }
  .platform-mockup__screen { grid-template-columns: minmax(0, 1fr); }
  .mock-side { display: none; }
  .section { padding-block: 72px; }
}

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


/* =========================================================
   MARMORIZACAO · CHAMPAGNE + CHOCOLATE (camada de override)
   Redesign visual: luxo discreto, feminino, editorial e leve.
   Todo o conteúdo e todos os assets originais foram preservados.
   ========================================================= */

:root {
  --caramel: #C9B8A2;
  --caramel-dark: #9A8065;
  --peach: #E7D8C5;
  --cream: #FBF9F5;
  --sand: #F2ECE4;
  --espresso: #2C211C;
  --cocoa: #66564B;
  --white: #FFFFFF;
  --line: rgba(44, 33, 28, .12);
  --line-light: rgba(255,255,255,.18);
  --radius: 22px;
  --shadow: 0 22px 70px rgba(58, 43, 34, .10);
  --container: 1160px;
}

html { background: var(--cream); }

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(201,184,162,.16), transparent 24rem),
    radial-gradient(circle at 92% 38%, rgba(231,216,197,.18), transparent 28rem),
    var(--cream);
  color: var(--espresso);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: -.006em;
}

body::selection {
  background: var(--espresso);
  color: var(--cream);
}

h1, h2, h3 {
  color: var(--espresso);
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(2.65rem, 5.2vw, 4.8rem);
  line-height: .99;
  max-width: 15ch;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.02;
}

h3 {
  line-height: 1.08;
}

.accent {
  color: var(--caramel-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(44,33,28,.09);
  background: rgba(251,249,245,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header .container {
  min-height: 82px;
}

.brand {
  font-size: 1.18rem;
  color: var(--espresso);
}

.brand .accent {
  font-size: 1.48rem;
  color: var(--caramel-dark);
}

nav a {
  color: var(--cocoa);
  transition: color .2s ease;
}

nav a:hover {
  color: var(--espresso);
}

.button {
  border: 1px solid var(--espresso);
  border-radius: 999px;
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 10px 28px rgba(44,33,28,.12);
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  border-color: var(--caramel-dark);
  background: var(--caramel-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(44,33,28,.16);
}

/* ---------- Hero ---------- */
.hero {
  min-height: min(calc(100svh - 82px), 760px);
  padding: clamp(56px, 8vw, 100px) 0;
  background:
    linear-gradient(90deg, rgba(251,249,245,.98) 0%, rgba(251,249,245,.94) 40%, rgba(251,249,245,.48) 72%, rgba(251,249,245,.04) 100%),
    var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,128,101,.35), transparent);
}

.hero__grid {
  position: relative;
  z-index: 2;
}

.hero h1 {
  text-wrap: balance;
}

.hero .lead {
  max-width: 560px;
  margin-top: 24px;
  color: var(--cocoa);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.65;
}

.hero__actions {
  margin-top: 32px;
}

/* ---------- Seções ---------- */
.section {
  position: relative;
  padding: clamp(82px, 10vw, 132px) 0;
}

.section--sand {
  background:
    linear-gradient(rgba(255,255,255,.24), rgba(255,255,255,.24)),
    var(--sand);
}

.section--sand::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(88%, 1160px);
  height: 1px;
  transform: translateX(-50%);
  background: rgba(154,128,101,.16);
}

.section > .container > h2 {
  max-width: 800px;
}

/* ---------- Hoje x Depois ---------- */
.compare {
  gap: 24px;
  margin-top: 46px;
}

.compare > div {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(44,33,28,.10);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 35px rgba(58,43,34,.045);
}

.compare > div:first-child {
  background: rgba(255,255,255,.58);
}

.compare__after {
  border: 1px solid rgba(154,128,101,.32) !important;
  background: #E9DFD1 !important;
  box-shadow: 0 16px 45px rgba(92,70,52,.09) !important;
}

.compare h3 {
  margin-bottom: 22px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 500;
}

.x-list, .check-list {
  color: var(--cocoa);
}

.x-list li::before {
  color: var(--caramel-dark);
}

.check-list li::before {
  color: var(--caramel-dark);
}

/* ---------- Objeções ---------- */
.objections__grid {
  gap: 22px;
  margin-top: 46px;
}

.objections article {
  min-height: 270px;
  padding: 82px 30px 30px;
  border: 1px solid rgba(44,33,28,.10);
  border-top: 3px solid var(--caramel-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 45px rgba(58,43,34,.055);
}

.objections article h3 {
  font-size: 1.35rem;
}

.objections article p {
  margin-top: 16px;
  color: var(--cocoa);
  line-height: 1.65;
}

.objection__x {
  top: 28px;
  left: 30px;
}

.objection__x::before,
.objection__x::after {
  background: var(--caramel-dark);
}

/* ---------- Solução / mockup ---------- */
.editorial {
  gap: clamp(42px, 7vw, 100px);
}

.editorial > div > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--cocoa);
  font-size: 1.06rem;
  line-height: 1.75;
}

.platform-mockup {
  filter: drop-shadow(0 24px 50px rgba(44,33,28,.10));
}

.platform-mockup__laptop {
  border-color: #46372E;
  background: #2C211C;
}

.platform-mockup__screen {
  background: var(--cream);
}

.mock-side {
  background: #D8C8B4;
  color: var(--espresso);
}

.mock-main li {
  background: #fff;
}

.mock-main li.is-key {
  border-color: rgba(154,128,101,.42);
  background: #E9DFD1;
}

/* ---------- Aulas ---------- */
.module-grid {
  gap: 22px;
  margin-top: 48px;
}

.module {
  min-height: 255px;
  padding: 30px;
  border: 1px solid rgba(44,33,28,.10);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 38px rgba(58,43,34,.045);
  transition: transform .2s ease, box-shadow .2s ease;
}

.module:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(58,43,34,.085);
}

.module__number {
  color: var(--caramel-dark);
  letter-spacing: .13em;
}

.module__meta {
  color: #7A695C;
}

.module p {
  color: var(--cocoa);
  line-height: 1.62;
}

.module--key {
  border: 1px solid #47352B;
  background: #2C211C;
  box-shadow: 0 22px 60px rgba(44,33,28,.17);
}

.module--key h3 {
  color: #FFFDF9;
}

.module--key .module__number,
.module--key .module__meta,
.module--key p {
  color: #E8DCCB;
}

.module--key .module__quote {
  color: #FFFDF9 !important;
}

.module__tag {
  background: #D9C5AA;
  color: #2C211C;
  padding: 7px 12px;
}

.closing-line {
  margin-top: 38px;
  color: var(--cocoa);
}

/* ---------- Prova / resultado ---------- */
.proof-grid {
  gap: clamp(38px, 7vw, 90px);
}

.product-stats {
  gap: 14px;
  margin: 36px 0;
}

.product-stats p {
  padding: 22px;
  border: 1px solid rgba(44,33,28,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
}

.product-stats strong {
  color: var(--caramel-dark);
}

.product-stats span {
  color: var(--cocoa);
}

.result-photo img,
.bio-photo img {
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(44,33,28,.13);
}

.result-photo figcaption {
  color: #7A695C;
}

/* ---------- História / autoridade ---------- */
.quote {
  color: var(--espresso);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.6;
}

.quote p {
  padding-left: 34px;
}

.quote p::before {
  color: var(--caramel-dark);
  font-size: 3.3rem;
}

.quote footer {
  color: var(--caramel-dark);
}

.authority {
  color: var(--cocoa);
  border-top-color: rgba(44,33,28,.12);
}

/* ---------- Oferta ---------- */
.offer {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 11vw, 140px) 0;
  background: #2C211C;
  color: #F7F1E8;
}

.offer::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -220px;
  border-radius: 50%;
  border: 1px solid rgba(231,216,197,.18);
  box-shadow:
    0 0 0 70px rgba(231,216,197,.035),
    0 0 0 140px rgba(231,216,197,.025);
}

.offer h2 {
  color: #FFFDF9;
  max-width: 700px;
}

.offer .eyebrow {
  color: #D9C5AA;
}

.offer__grid {
  position: relative;
  z-index: 1;
}

.payback {
  margin-top: 22px;
  max-width: 560px;
  color: rgba(247,241,232,.76);
  font-size: 1.04rem;
  line-height: 1.65;
}

.guarantee {
  max-width: 580px;
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(231,216,197,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  color: rgba(247,241,232,.82);
}

.guarantee strong {
  color: #E7D8C5;
}

.offer__card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(231,216,197,.26);
  border-radius: 26px;
  background: #F8F4ED;
  color: var(--espresso);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

.offer__price {
  color: var(--espresso);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
}

.offer__price span {
  color: #7A695C;
}

.offer .check-list {
  color: var(--cocoa);
}

.offer .check-list li::before {
  color: var(--caramel-dark);
}

.offer .button {
  border-color: var(--espresso);
  background: var(--espresso);
  color: #FFFDF9;
}

.secure {
  color: #8A786A;
}

/* ---------- Para quem ---------- */
.fit-grid {
  gap: 22px;
  margin-top: 46px;
}

.fit-grid > * {
  padding: 30px;
  border: 1px solid rgba(44,33,28,.10);
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
  box-shadow: 0 12px 38px rgba(58,43,34,.045);
}

.fit-grid h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 500;
}

.fit-grid p {
  margin-top: 14px;
  color: var(--cocoa);
  line-height: 1.65;
}

/* ---------- FAQ ---------- */
.faq-list {
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(44,33,28,.12);
}

.faq-list details {
  border-bottom: 1px solid rgba(44,33,28,.12);
}

.faq-list summary {
  padding: 23px 0;
  font-size: 1.03rem;
  color: var(--espresso);
}

.faq-list summary::after {
  color: var(--caramel-dark);
  font-size: 1.3rem;
}

.faq-list details p {
  max-width: 800px;
  padding: 0 40px 24px 0;
  color: var(--cocoa);
  line-height: 1.7;
}

/* ---------- CTA final ---------- */
.final-cta {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 100%, rgba(201,184,162,.22), transparent 34rem),
    var(--sand);
}

.final-cta h2 {
  max-width: 850px;
  margin-inline: auto;
}

.final-cta p {
  color: var(--cocoa);
  font-size: 1.08rem;
}

/* ---------- Footer ---------- */
.footer {
  padding: 42px 0;
  border-top: 1px solid rgba(44,33,28,.10);
  background: #EAE2D8;
  color: #75655A;
}

.footer strong {
  color: var(--espresso);
}

.footer a {
  color: var(--espresso);
}

/* ---------- Pequenos detalhes editoriais ---------- */
.section-action {
  margin-top: 34px;
}

.section-action .button {
  box-shadow: 0 12px 30px rgba(44,33,28,.10);
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero::before {
    opacity: .92;
  }

  .module,
  .objections article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header .container {
    min-height: 64px;
  }

  h1 {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand .accent {
    font-size: 1.28rem;
  }

  .hero {
    padding: 0 0 54px;
    background: var(--cream);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(251,249,245,0) 74%, var(--cream) 100%),
      url("assets/marmorizacao/du-hero.jpg") center 8% / cover no-repeat;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero__grid {
    margin-top: -20px;
  }

  .hero .lead {
    margin-top: 18px;
    font-size: 1rem;
  }

  .section {
    padding-block: 76px;
  }

  .compare > div,
  .module,
  .fit-grid > * {
    padding: 27px;
  }

  .objections article {
    padding: 72px 27px 27px;
  }

  .objection__x {
    top: 26px;
    left: 27px;
  }

  .module--key {
    padding: 30px 27px;
  }

  .offer__card {
    border-radius: 22px;
  }

  .faq-list summary {
    padding: 20px 0;
    font-size: .98rem;
  }

  .footer {
    padding: 34px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .module:hover,
  .button:hover {
    transform: none;
  }
}

/* ---------- Hero mobile: botão na primeira tela, foto no tamanho da versão quadrada ---------- */
@media (max-width: 640px) {
  .hero::before { aspect-ratio: 1 / 1; max-height: 50svh; background-position: center 8%; }
  .hero__grid { margin-top: -24px; }
  .hero h1 { font-size: clamp(1.85rem, 8.2vw, 2.5rem); line-height: 1.02; }
  .hero .lead { margin-top: 12px; font-size: .95rem; line-height: 1.55; }
  .hero__actions { margin-top: 18px; }
}

@media (max-width: 640px) and (max-height: 700px) {
  .hero::before { aspect-ratio: 6 / 5; }
}

/* ---------- Autoridade do Du: grade 2x2 centralizada (mesmo cartão do .product-stats) ---------- */
.authority {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
  padding-top: 0;
  border-top: 0;
}

.authority span {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 14px 12px;
  border: 1px solid rgba(44,33,28,.10);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  color: var(--espresso);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

/* ---------- Bio do Du em uma coluna: foto ocupa a largura toda, igual à .result-photo ---------- */
@media (max-width: 900px) {
  .bio-photo { max-width: none; }
}

/* ---------- Logo: "Marmori" + "zação" colados, sem espaço entre as duas fontes ---------- */
.brand { gap: 0; }

/* ---------- v2 aplicada: ajustes de conversao e leitura ---------- */
.secure { color: #5E4E43; }
.footer { color: #5E4E43; }
.faq-list details p { max-width: 65ch; }
.final-cta p { max-width: 62ch; margin-inline: auto; }
.quote { font-family: Inter, Arial, sans-serif; font-style: normal; font-size: clamp(1.08rem, 1.5vw, 1.25rem); line-height: 1.7; }
.quote p { font-style: normal; }
@media (max-width: 640px) {
  .hero::before { aspect-ratio: 1 / 1; background-position: center 8%; }
  .hero__grid { margin-top: -24px; }
  .hero h1 { font-size: clamp(1.85rem, 8.2vw, 2.5rem); line-height: 1.02; }
  .hero .lead { margin-top: 12px; font-size: .95rem; line-height: 1.55; }
  .hero__actions { margin-top: 18px; }
  .site-header nav { display: flex; }
  .site-header nav a:not(.button) { display: none; }
  .site-header nav .button { min-height: 44px; padding: 10px 18px; font-size: .88rem; }
}
@media (max-width: 640px) and (max-height: 700px) {
  .hero::before { aspect-ratio: 6 / 5 !important; }
}

/* ---------- Botoes laranja (CTA que chama atencao) ---------- */
:root { --laranja: #EA7317; --laranja-escuro: #C85F0C; }

.button {
  border-color: var(--laranja);
  background: var(--laranja);
  color: var(--espresso);
  box-shadow: 0 10px 28px rgba(234, 115, 23, .22);
}

.button:hover {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 14px 32px rgba(44, 33, 28, .18);
}

.offer .button,
.section-action .button {
  border-color: var(--laranja);
  background: var(--laranja);
  color: var(--espresso);
}

.offer .button:hover,
.section-action .button:hover {
  border-color: var(--espresso);
  background: var(--espresso);
  color: var(--cream);
}
