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

  /* ══════════════════════ DESIGN SYSTEM GLOBAL ══════════════════════ */
  :root{
    --color-background: #FAF7F2;
    --color-background-alt: #F3EAE0;
    --color-surface: #FFFDFC;
    --color-surface-sage: #EDF0E8;
    --color-text: #3E3029;
    --color-text-secondary: #78675F;
    --color-terracotta: #A65F49;
    --color-terracotta-hover: #8D4B38;
    --color-sage: #7C876E;
    --color-sage-dark: #5F6B54;
    --color-border: #E6D8CC;
    --color-gold-soft: #B99A67;
    --color-dark-section: #392A24;
    --color-white: #FFFFFF;
    --color-success: #68785D;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Manrope', 'Segoe UI', sans-serif;

    --radius-btn: 14px;
    --radius-card: 18px;
    --radius-badge: 999px;
    --radius-img: 18px;

    --shadow-btn: 0 10px 25px rgba(104,57,41,0.18);
    --shadow-btn-hover: 0 14px 32px rgba(104,57,41,0.24);
    --shadow-card: 0 8px 24px rgba(74,52,42,0.07);
    --shadow-card-premium: 0 12px 32px rgba(74,52,42,0.1);

    --max-width: 1180px;
    --transition: 220ms ease;

    --btn-min-height: 54px;
  }

  html{ scroll-behavior:smooth; }

  body{
    font-family: var(--font-sans);
    background: var(--color-background);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  @media(min-width:1024px){ body{ font-size:17px; } }

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

  h1,h2,h3{ font-family: var(--font-serif); color: var(--color-text); font-weight:700; }

  p{ color: var(--color-text-secondary); }

  a{ color:inherit; }

  button{ font-family:inherit; }

  .container{ max-width: var(--max-width); margin-inline:auto; padding-inline:20px; }
  @media(max-width:359px){ .container{ padding-inline:16px; } }
  @media(min-width:768px){ .container{ padding-inline:28px; } }
  @media(min-width:1024px){ .container{ padding-inline:32px; } }

  .section{ padding-block: clamp(56px, 14vw, 76px); position:relative; }
  @media(min-width:1024px){ .section{ padding-block: clamp(82px, 8vw, 112px); } }

  .bg-cream{ background: var(--color-background); }
  .bg-alt{ background: var(--color-background-alt); }
  .bg-sage{ background: var(--color-surface-sage); }
  .bg-dark{ background: var(--color-dark-section); color:#F2E9DF; }
  .bg-dark h2, .bg-dark h3{ color:#FFF; }
  .bg-dark p{ color:#D9C9BB; }

  .center{ text-align:center; margin-inline:auto; }

  /* ── DESTAQUES DE TEXTO — 3 níveis ───────────────────── */
  .hl{ color: var(--color-terracotta); font-weight:800; }
  .hl-invert{ color:#E3B48C; font-weight:800; }
  .hl-soft{ background: var(--color-surface-sage); color: var(--color-text); font-weight:700; padding:1px 8px; border-radius:7px; box-decoration-break:clone; -webkit-box-decoration-break:clone; }
  .hl-soft--beige{ background: var(--color-background-alt); }
  .hl-underline{ text-decoration:underline; text-decoration-color: var(--color-gold-soft); text-decoration-thickness:2px; text-underline-offset:4px; }

  /* ── TIPOGRAFIA DE SEÇÃO ─────────────────────────────── */
  .eyebrow{
    display:flex; align-items:flex-start; justify-content:center; gap:8px;
    font-family: var(--font-sans);
    font-size:12.5px; font-weight:800; letter-spacing:1.6px; text-transform:uppercase;
    color: var(--color-terracotta);
    margin-bottom:10px;
  }
  .eyebrow::before{ content:''; width:6px; height:6px; margin-top:6px; border-radius:50%; background: var(--color-gold-soft); flex-shrink:0; }
  .bg-dark .eyebrow{ color:#E3B48C; }
  .bg-dark .eyebrow::before{ background:#E3B48C; }

  .section-title{
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height:1.1;
    font-weight:800;
    letter-spacing:-0.01em;
    max-width:820px;
    margin-bottom:18px;
  }

  .section-subtitle{
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height:1.6;
    color: var(--color-text-secondary);
    max-width:640px;
    margin-bottom:30px;
  }
  .subtitle-strong{ font-weight:700; color: var(--color-text); }

  /* ── BOTÕES ───────────────────────────────────────────── */
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    min-height: var(--btn-min-height);
    padding:17px 30px;
    background: var(--color-terracotta);
    color:#fff;
    font-family: var(--font-sans);
    font-weight:800;
    font-size:15px;
    letter-spacing:0.5px;
    text-transform:uppercase;
    text-decoration:none;
    border:none;
    border-radius: var(--radius-btn);
    cursor:pointer;
    box-shadow: var(--shadow-btn);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    width:100%;
  }
  @media(min-width:640px){ .btn{ width:auto; } }
  @media(max-width:400px){ .btn{ font-size:13.5px; letter-spacing:0.2px; padding:16px 18px; } }
  .btn:hover{ background: var(--color-terracotta-hover); transform:translateY(-2px); box-shadow: var(--shadow-btn-hover); }
  .btn:active{ transform:translateY(0); }
  .btn:focus-visible{ outline:2px solid var(--color-gold-soft); outline-offset:3px; }
  .btn svg{ width:16px; height:16px; flex-shrink:0; }

  .btn-wrap{ display:flex; flex-direction:column; align-items:center; gap:12px; margin-top:32px; }
  .btn-wrap--left{ align-items:flex-start; }

  .microcopy{ font-family: var(--font-sans); font-size:13px; font-weight:600; color: var(--color-text-secondary); text-align:center; }

  /* ── BADGES ───────────────────────────────────────────── */
  .badge-row{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
  .badge-row--left{ justify-content:flex-start; }
  .badge{
    display:inline-flex; align-items:center; gap:6px;
    font-size:12.5px; font-weight:700;
    color: var(--color-text);
    background: var(--color-surface-sage);
    border:1px solid var(--color-border);
    border-radius: var(--radius-badge);
    padding:7px 11px;
  }
  .badge::before{ content:''; width:6px; height:6px; border-radius:50%; background: var(--color-sage); flex-shrink:0; }
  .badge--gold{ border-color: rgba(185,154,103,0.55); color: var(--color-terracotta-hover); }
  .badge--gold::before{ background: var(--color-gold-soft); }
  .bg-dark .badge{ background:rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.16); color:#F2E9DF; }

  .card-tag{
    display:inline-block;
    font-size:11px; font-weight:800; letter-spacing:1px; text-transform:uppercase;
    color: var(--color-sage-dark);
    background: var(--color-surface-sage);
    border-radius: var(--radius-badge);
    padding:5px 10px;
  }
  .card-tag--value{ color: var(--color-gold-soft); background: var(--color-background-alt); }

  /* ── CARDS ────────────────────────────────────────────── */
  .cards-grid{ display:grid; grid-template-columns:1fr; gap:16px; }
  @media(min-width:640px){ .cards-grid{ grid-template-columns:repeat(2,1fr); } }
  .cards-grid--3{ } @media(min-width:1024px){ .cards-grid--3{ grid-template-columns:repeat(3,1fr); } }
  .cards-grid--4{ } @media(min-width:1024px){ .cards-grid--4{ grid-template-columns:repeat(4,1fr); } }
  .cards-grid--5{ } @media(min-width:1024px){ .cards-grid--5{ grid-template-columns:repeat(5,1fr); } }

  .card{
    background: var(--color-surface);
    border:1px solid var(--color-border);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding:18px;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  @media(min-width:768px){ .card{ padding:24px; } }
  @media(hover:hover){ .card:hover{ transform:translateY(-4px); box-shadow: var(--shadow-card-premium); } }
  .card h3{ font-size:1.05rem; margin-bottom:8px; }
  .card p{ font-size:14.5px; line-height:1.6; }

  .card--premium{ border-color: rgba(166,95,73,0.25); box-shadow: var(--shadow-card-premium); }
  .card--premium .card-tag{ margin-bottom:10px; }

  .card--pain{ display:flex; gap:12px; align-items:flex-start; }
  .card--pain .num{ flex-shrink:0; font-family:var(--font-serif); font-weight:700; font-size:1.8rem; color: var(--color-gold-soft); line-height:1; }

  /* placeholder dentro do bonus card */
  .card .img-box{ margin-bottom:14px; }

  /* ── PLACEHOLDERS DE IMAGEM ───────────────────────────── */
  .img-box{
    border:1px dashed rgba(166,95,73,0.35);
    background: var(--color-background-alt);
    border-radius: var(--radius-img);
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center;
    padding:20px;
    width:100%;
    gap:8px;
  }
  .img-box__label{
    font-size:10.5px; font-weight:800; letter-spacing:1.4px; text-transform:uppercase;
    color: var(--color-terracotta);
    background:#fff;
    border-radius: var(--radius-badge);
    padding:4px 10px;
  }
  .img-box__desc{ font-size:12.5px; line-height:1.55; color: var(--color-text-secondary); font-style:italic; }

  .img-box--hero{ aspect-ratio:4/5; }
  @media(min-width:1024px){ .img-box--hero{ aspect-ratio:3/4; } }
  .img-box--wide{ aspect-ratio:16/9; }
  .img-box--square{ aspect-ratio:1/1; }
  .img-box--portrait{ aspect-ratio:3/4; }
  .img-box--seal{ aspect-ratio:1/1; max-width:180px; margin-inline:auto; border-radius:50%; }

  /* placeholder substituído por imagem real */
  .img-box--photo{ border:none; background:none; padding:0; overflow:hidden; }
  .img-box--photo img{ width:100%; height:100%; object-fit:cover; border-radius:inherit; }

  /* ── TOP BAR ──────────────────────────────────────────── */
  .topbar{
    background: var(--color-dark-section);
    color:#fff;
    text-align:center;
    font-size:12.5px;
    font-weight:600;
    padding:10px 16px;
    line-height:1.4;
  }
  .topbar span{ display:inline-flex; align-items:center; gap:7px; justify-content:center; flex-wrap:wrap; }
  .topbar span::before{ content:''; width:6px; height:6px; border-radius:50%; background: var(--color-gold-soft); flex-shrink:0; }
  @media(min-width:640px){ .topbar{ font-size:13px; } }

  /* ── HERO ─────────────────────────────────────────────── */
  .hero{ padding-block:40px 44px; }
  @media(min-width:1024px){ .hero{ padding-block:64px; } }

  .hero-grid{ display:grid; gap:28px; }
  @media(min-width:1024px){
    .hero-grid{
      grid-template-columns:1.15fr 1fr;
      grid-template-areas:"top image" "bottom image";
      column-gap:56px; row-gap:12px; align-items:start;
    }
    .hero-copy-top{ grid-area:top; }
    .hero-image{ grid-area:image; align-self:center; }
    .hero-copy-bottom{ grid-area:bottom; }
  }

  .hero-kicker{
    font-size:12.5px; font-weight:700; letter-spacing:0.6px; color: var(--color-sage-dark);
    text-transform:uppercase; line-height:1.5; margin-bottom:4px;
  }

  .hero h1{
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
    line-height:1.06;
    font-weight:800;
    letter-spacing:-0.01em;
    margin-block:12px 16px;
  }
  @media(min-width:1024px){ .hero h1{ font-size: clamp(3rem, 5vw, 4.25rem); line-height:1.03; } }

  .hero-sub{
    font-size:16px;
    line-height:1.6;
    color: var(--color-text-secondary);
    max-width:520px;
    margin-bottom:24px;
  }
  @media(min-width:1024px){ .hero-sub{ font-size:17.5px; } }

  .hero-bullets{ list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:28px; }
  .hero-bullets li{
    display:flex; align-items:flex-start; gap:10px;
    font-size:14.5px; font-weight:600; color: var(--color-text);
  }
  .hero-bullets li::before{
    content:''; flex-shrink:0; width:8px; height:8px; margin-top:6px; border-radius:50%;
    background: var(--color-sage);
  }

  .hero-caption{
    font-size:13px; font-style:italic; color: var(--color-text-secondary);
    text-align:center; margin-top:12px;
  }

  /* ── SEÇÃO GALERIA ────────────────────────────────────── */
  .gallery-grid{ display:grid; grid-template-columns:1fr; gap:14px; }
  @media(min-width:480px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }
  @media(min-width:1024px){
    .gallery-grid{ grid-template-columns:repeat(6,1fr); gap:18px; }
    .gallery-grid .img-box:nth-child(1){ grid-column:span 3; grid-row:span 2; aspect-ratio:16/11; }
    .gallery-grid .img-box:nth-child(2){ grid-column:span 3; aspect-ratio:16/9; }
    .gallery-grid .img-box:nth-child(3){ grid-column:span 3; aspect-ratio:16/9; }
    .gallery-grid .img-box:nth-child(4){ grid-column:span 2; aspect-ratio:3/4; }
    .gallery-grid .img-box:nth-child(5){ grid-column:span 2; aspect-ratio:3/4; }
    .gallery-grid .img-box:nth-child(6){ grid-column:span 2; aspect-ratio:3/4; }
  }
  .gallery-grid .img-box{ aspect-ratio:4/3; }

  .transform-final{
    text-align:center; font-weight:700; color: var(--color-text); font-size:16px;
    margin-top:24px; max-width:560px; margin-inline:auto; line-height:1.5;
  }

  /* ── MÉTODO 4 ETAPAS ──────────────────────────────────── */
  .method-grid{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:8px; }
  @media(min-width:640px){ .method-grid{ grid-template-columns:repeat(2,1fr); } }
  @media(min-width:1024px){ .method-grid{ grid-template-columns:repeat(4,1fr); } }
  .method-card{
    background: var(--color-surface); border:1px solid var(--color-border); border-radius: var(--radius-card);
    box-shadow: var(--shadow-card); padding:22px;
  }
  .method-card .num{
    font-family: var(--font-serif); font-size:1.8rem; font-weight:700; color: var(--color-gold-soft);
    line-height:1; margin-bottom:10px;
  }
  .method-card h3{ font-size:1rem; letter-spacing:1px; color: var(--color-terracotta); margin-bottom:8px; }

  /* ── BÔNUS — VALOR TOTAL ──────────────────────────────── */
  .value-block{
    text-align:center; max-width:520px; margin:32px auto 0;
    background: var(--color-surface); border:1px solid var(--color-border); border-radius: var(--radius-card);
    padding:26px; box-shadow: var(--shadow-card);
  }
  .value-block .total{ font-family:var(--font-serif); font-size:1.8rem; font-weight:800; color: var(--color-terracotta); margin-bottom:8px; }
  .value-block p{ font-size:14.5px; font-weight:600; color: var(--color-text); }

  /* ── TIMELINE 7 DÍAS ──────────────────────────────────── */
  .timeline{ display:flex; flex-direction:column; gap:14px; margin-top:8px; }
  .timeline-item{
    display:flex; gap:16px; align-items:flex-start;
    background: var(--color-surface); border:1px solid var(--color-border); border-radius: var(--radius-card);
    padding:18px 20px; box-shadow: var(--shadow-card);
  }
  .timeline-item .day{
    flex-shrink:0; width:44px; height:44px; border-radius:50%;
    background: var(--color-sage); color:#fff;
    display:flex; align-items:center; justify-content:center;
    font-family:var(--font-serif); font-weight:700; font-size:0.95rem;
  }
  .timeline-item h3{ font-size:1rem; margin-bottom:4px; }
  .timeline-item p{ font-size:14px; }
  .timeline-final{ text-align:center; font-weight:700; color: var(--color-text); max-width:600px; margin:26px auto 0; font-size:15.5px; line-height:1.55; }

  /* ── USO E VENDA — OBJEÇÃO ────────────────────────────── */
  .objection-block{
    max-width:640px; margin:30px auto 0;
    background: var(--color-surface); border-left:4px solid var(--color-sage);
    border-radius:0 var(--radius-card) var(--radius-card) 0;
    padding:22px 24px; box-shadow: var(--shadow-card);
  }
  .objection-block h3{ font-size:1.05rem; margin-bottom:8px; }
  .objection-block p{ font-size:14.5px; }
  .ethics-note{ font-size:12.5px; color: var(--color-text-secondary); text-align:center; max-width:640px; margin:18px auto 0; line-height:1.6; }

  /* ── OFERTA ───────────────────────────────────────────── */
  .offer-card{
    background: var(--color-background); color: var(--color-text);
    border-radius:24px; padding:30px 24px; max-width:600px; margin:32px auto 0;
    box-shadow:0 30px 70px rgba(0,0,0,0.3);
  }
  @media(min-width:640px){ .offer-card{ padding:40px; } }
  .offer-list{ list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:24px; }
  .offer-list li{ font-size:15px; font-weight:600; display:flex; gap:9px; }
  .offer-list li::before{ content:'✓'; color: var(--color-success); font-weight:800; flex-shrink:0; }

  .value-stack{ border-top:1px dashed var(--color-border); padding-top:18px; margin-top:6px; display:flex; flex-direction:column; gap:6px; }
  .value-stack div{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:4px 10px; font-size:14px; font-weight:600; color: var(--color-text-secondary); }
  .value-stack .total-row{ color: var(--color-text); font-weight:800; font-size:15px; border-top:1px solid var(--color-border); padding-top:10px; margin-top:4px; }

  .price-reveal{ text-align:center; margin-top:22px; }
  .price-reveal .line{ font-size:13.5px; font-weight:800; letter-spacing:0.5px; text-transform:uppercase; color: var(--color-text-secondary); margin-bottom:2px; }
  .price-reveal .big{ font-family:var(--font-serif); font-size:clamp(2.6rem,9vw,3.6rem); font-weight:800; color: var(--color-terracotta); line-height:1; margin:6px 0; }
  .price-reveal .sub{ font-size:13.5px; font-weight:600; color: var(--color-text-secondary); }

  .urgency-note{ text-align:center; font-size:13px; color: var(--color-text-secondary); max-width:520px; margin:20px auto 0; line-height:1.55; }

  /* ── GARANTIA ─────────────────────────────────────────── */
  .guarantee-copy{ max-width:640px; margin-inline:auto; text-align:center; }
  .guarantee-highlight{ font-weight:700; color: var(--color-text); font-size:16px; margin-top:16px; }

  /* ── ACCORDION FAQ ────────────────────────────────────── */
  .accordion{ display:flex; flex-direction:column; gap:10px; margin-top:8px; max-width:760px; margin-inline:auto; }
  .acc-item{ background: var(--color-surface); border:1px solid var(--color-border); border-radius: var(--radius-card); overflow:hidden; box-shadow: var(--shadow-card); transition: box-shadow var(--transition), border-color var(--transition); }
  .acc-item.open{ border-color: var(--color-terracotta); }
  .acc-question{
    width:100%; min-height:56px; display:flex; align-items:center; justify-content:space-between; gap:14px;
    padding:16px 20px; background:none; border:none; cursor:pointer; text-align:left;
    font-family:var(--font-sans); font-weight:700; font-size:15.5px; color: var(--color-text);
  }
  .acc-question:focus-visible{ outline:2px solid var(--color-gold-soft); outline-offset:-2px; }
  .acc-icon{ position:relative; flex-shrink:0; width:18px; height:18px; }
  .acc-icon::before, .acc-icon::after{ content:''; position:absolute; background: var(--color-terracotta); border-radius:2px; transition: transform var(--transition); }
  .acc-icon::before{ top:50%; left:0; width:100%; height:2px; margin-top:-1px; }
  .acc-icon::after{ left:50%; top:0; height:100%; width:2px; margin-left:-1px; }
  .acc-item.open .acc-icon::after{ transform:rotate(90deg); opacity:0; }
  .acc-answer{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
  .acc-answer p{ padding:0 20px 18px; font-size:14.5px; line-height:1.6; }

  /* ── CTA FINAL ────────────────────────────────────────── */
  .final-grid{ display:grid; gap:32px; }
  @media(min-width:1024px){ .final-grid{ grid-template-columns:1.1fr 1fr; align-items:center; gap:48px; } }

  /* ── RODAPÉ ───────────────────────────────────────────── */
  footer{ background: var(--color-dark-section); color:#D9C9BB; padding-block:40px; text-align:center; font-size:13px; }
  footer .foot-brand{ font-family:var(--font-serif); color:#fff; font-size:1.15rem; margin-bottom:6px; }
  footer .foot-links{ display:flex; flex-wrap:wrap; justify-content:center; gap:16px; margin:18px 0; }
  footer .foot-links a{ color:#D9C9BB; text-decoration:none; }
  footer .foot-links a:hover{ color:#E3B48C; }
  footer .foot-disclaimer{ font-size:12px; color:#9C897C; max-width:520px; margin-inline:auto; line-height:1.6; }
  #footer-spacer{ height:0; }
  @media(max-width:1023px){ #footer-spacer{ height:calc(74px + env(safe-area-inset-bottom, 0px)); } }

  /* ── BARRA FIXA MOBILE ────────────────────────────────── */
  .sticky-bar{
    position:fixed; left:0; right:0; bottom:0; z-index:70;
    background: var(--color-surface);
    border-top:1px solid var(--color-border);
    box-shadow:0 -8px 24px rgba(62,48,41,0.12);
    padding:10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    transform:translateY(110%);
    transition:transform .3s ease;
  }
  .sticky-bar.visible{ transform:translateY(0); }
  .sticky-bar .price-now{ font-size:15px; font-weight:800; color: var(--color-terracotta); }
  .sticky-bar .price-before{ font-size:11.5px; color: var(--color-text-secondary); text-decoration:line-through; }
  .sticky-bar .btn{ width:auto; min-height:44px; padding:12px 20px; font-size:13px; }
  @media(min-width:1024px){ .sticky-bar, #footer-spacer{ display:none !important; } }

  /* ── ACESSIBILIDADE / MOTION ──────────────────────────── */
  .reveal{ opacity:1; transform:none; }
  html.js-anim .reveal{ opacity:0; transform:translateY(16px); transition:opacity .5s ease, transform .5s ease; }
  html.js-anim .reveal.is-visible{ opacity:1; transform:none; }

  @media(prefers-reduced-motion:reduce){
    html{ scroll-behavior:auto; }
    .btn, .acc-answer, .card{ transition:none; }
  }
