
    :root {
      --bg0:  #FAFAF7;
      --bg:   #F5F2EB;
      --bg2:  #EDEAE2;
      --bgd:  #131210;
      --t:    #2A2723;
      --tm:   #6B6860;
      --tf:   #9B9890;
      --bs:   rgba(42,39,35,.22);
      --ff:   "Sora", system-ui, sans-serif;
      --col:  720px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: var(--ff);
      font-weight: 400;
      background-color: var(--bg);
      color: var(--t);
      -webkit-font-smoothing: antialiased;
    }

    body::after {
      content: "";
      position: fixed; inset: 0; pointer-events: none; z-index: 0;
      opacity: .022;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
      background-size: 300px 300px;
    }

    .wrap-c { max-width: var(--col); margin: 0 auto; padding: 0 48px; }

    /* REVEAL */
    .r { opacity: 0; transform: translateY(14px);
         transition: opacity .6s ease, transform .6s ease; }
    .r.in { opacity: 1; transform: none; }
    .d1 { transition-delay: .10s; }
    .d2 { transition-delay: .20s; }
    .d3 { transition-delay: .30s; }
    .d4 { transition-delay: .40s; }
    .d5 { transition-delay: .50s; }
    .d6 { transition-delay: .60s; }

    .r-card { opacity: 0; transform: translateY(28px) scale(0.97);
              transition: opacity .5s ease, transform .5s ease; }
    .r-card.in { opacity: 1; transform: none; }

    @media (prefers-reduced-motion: reduce) {
      .r, .r-card { opacity: 1; transform: none; transition: none; }
      * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
      #cursor { display: none !important; }
    }

    /* ══ NAV ══ */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 32px 52px;
      display: flex; align-items: center; justify-content: center;
      background: var(--bg);
      transition: padding .35s ease;
    }
    nav.scrolled { padding-top: 16px; padding-bottom: 16px; }
    .nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .nav-logo {
      width: 34px; height: 34px; border-radius: 7px;
      overflow: hidden; flex-shrink: 0; display: block;
      transition: width .35s ease, height .35s ease;
    }
    nav.scrolled .nav-logo { width: 28px; height: 28px; }
    .nav-logo svg { width: 100%; height: 100%; display: block; }
    .nav-name {
      font-family: var(--ff); font-size: 13px; font-weight: 400;
      letter-spacing: .1em; text-transform: uppercase; color: var(--tm);
    }

    /* ══ S1 — HERO ══ */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      padding: 140px 0 96px; text-align: center;
      position: relative; z-index: 1; background-color: var(--bg);
    }
    #hero::before {
      content: ""; position: absolute; inset: 0;
      pointer-events: none; z-index: 0;
      background-image:
        linear-gradient(rgba(42,39,35,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42,39,35,.07) 1px, transparent 1px);
      background-size: 40px 40px;
      -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, black 15%, transparent 78%);
      mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, black 15%, transparent 78%);
    }
    .hero-inner {
      max-width: var(--col); width: 100%; padding: 0 48px;
      display: flex; flex-direction: column; align-items: center;
      position: relative; z-index: 1;
    }
    .hero-h1 {
      font-family: var(--ff); font-size: clamp(36px, 5.2vw, 64px);
      font-weight: 600; line-height: 1.1; letter-spacing: -.025em;
      color: var(--t); margin-bottom: 28px;
      text-wrap: balance;
      opacity: 0; animation: fade-up .7s ease .08s forwards;
    }
    .hero-sub {
      font-family: var(--ff); font-size: 17px; font-weight: 300;
      line-height: 1.8; color: var(--tm);
      max-width: 480px; margin-bottom: 52px; letter-spacing: .005em;
      opacity: 0; animation: fade-up .7s ease .24s forwards;
    }
    .cta-row {
      display: flex; flex-direction: row;
      align-items: center; gap: 14px; justify-content: center;
      opacity: 0; animation: fade-up .7s ease .4s forwards;
    }
    .btn-primary {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 10px; font-family: var(--ff);
      font-size: 15px; font-weight: 500; letter-spacing: .01em;
      padding: 15px 28px 15px 34px; border-radius: 5px;
      background: var(--t); color: var(--bg);
      text-decoration: none; border: 1.5px solid var(--t);
      min-height: 50px; white-space: nowrap;
      transition: background .2s, transform .15s, gap .2s;
    }
    .btn-primary:hover { background: #1A1815; gap: 13px; }
    .btn-primary:active { transform: scale(.98); }
    .btn-arrow { flex-shrink: 0; transition: transform .2s ease; }
    .btn-primary:hover .btn-arrow { transform: translate(2px, -2px); }
    .avatar {
      width: 50px; height: 50px; border-radius: 50%;
      overflow: hidden; flex-shrink: 0;
      border: 2px solid var(--bg); box-shadow: 0 0 0 1.5px var(--bs);
      transition: transform .22s;
    }
    .avatar:hover { transform: scale(1.06); }
    .avatar img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top; display: block;
    }
    .scroll-cue {
      position: absolute; bottom: 32px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center;
      gap: 5px; opacity: .18; pointer-events: none;
      animation: fade-up .5s ease 1s both; z-index: 1;
    }
    .scroll-line {
      width: 1px; height: 44px; background: var(--t);
      animation: pulse 2.4s ease-in-out infinite;
    }

    /* ══ S2 — ICP ══ */
    #icp { background: var(--bg2); padding: 104px 0; }

    .icp-title {
      font-family: var(--ff);
      font-size: clamp(24px, 3.2vw, 40px);
      font-weight: 600; line-height: 1.2; letter-spacing: -.02em;
      color: var(--t);
      text-align: center; text-wrap: balance;
      margin-bottom: 56px;
    }

    .icp-grid {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 52px;
    }

    .icp-card {
      background: var(--bg0);
      border-radius: 12px;
      padding: 32px 52px 32px 28px;
      display: flex; flex-direction: row; align-items: center; gap: 36px;
      box-shadow: 0 1px 3px rgba(42,39,35,.05),
                  0 6px 20px rgba(42,39,35,.08);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .icp-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 8px rgba(42,39,35,.06),
                  0 16px 36px rgba(42,39,35,.11);
    }

    .card-num {
      font-family: var(--ff);
      font-size: 40px; font-weight: 300;
      line-height: 1; letter-spacing: -.02em;
      color: rgba(42,39,35,.38);
      flex-shrink: 0; width: 58px; text-align: right;
    }

    .card-text {
      font-family: var(--ff);
      font-size: 15px; font-weight: 400;
      line-height: 1.72; color: var(--t);
    }

    .icp-closing {
      font-family: var(--ff);
      font-size: 19px; font-weight: 500;
      line-height: 1.65; color: var(--t);
      text-align: center; text-wrap: balance;
    }

    /* ══ S3 — A CICATRIZ ══ */
    #cicatriz { background: var(--bg); padding: 104px 0; position: relative; }

    #cicatriz::before {
      content: ""; position: absolute; inset: 0;
      pointer-events: none; z-index: 0;
      background-image: linear-gradient(rgba(42,39,35,.045) 1px, transparent 1px);
      background-size: 100% 40px;
      -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 10%, transparent 75%);
      mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 10%, transparent 75%);
    }

    #cicatriz .wrap-c {
      position: relative; z-index: 1;
      display: flex; flex-direction: column; gap: 44px;
    }

    .scar-body {
      font-family: var(--ff);
      font-size: 17px; font-weight: 300;
      line-height: 1.85; color: var(--t);
    }

    .scar-lead {
      font-family: var(--ff);
      font-size: 19px; font-weight: 500;
      line-height: 1.6; color: var(--t); text-wrap: balance;
    }

    .scar-quote {
      padding: 8px 0;
      font-family: var(--ff);
      font-size: 19px; font-weight: 500;
      line-height: 1.6; color: var(--t); text-wrap: balance;
    }

    /* ══ S4 — O GUIA ══ */
    #guia { background: var(--bg2); padding: 104px 0; }
    #guia .wrap-c { display: flex; flex-direction: column; gap: 44px; text-align: center; }

    .guia-display {
      font-family: var(--ff);
      font-size: clamp(24px, 3.2vw, 40px);
      font-weight: 600; line-height: 1.2; letter-spacing: -.02em;
      color: var(--t); text-wrap: balance;
    }

    .guia-sub {
      font-family: var(--ff);
      font-size: 19px; font-weight: 500;
      line-height: 1.65; color: var(--t); text-wrap: balance;
    }

    .guia-body {
      font-family: var(--ff);
      font-size: 17px; font-weight: 300;
      line-height: 1.85; color: var(--t);
    }

    /* ══ S5 — ESTRUTURA DAK ══ */
    #estrutura { background: var(--bg); padding: 88px 0; }
    #estrutura .wrap-c { display: flex; flex-direction: column; gap: 44px; }

    .estrutura-title {
      font-family: var(--ff);
      font-size: clamp(24px, 3.2vw, 40px);
      font-weight: 600; line-height: 1.2; letter-spacing: -.02em;
      color: var(--t); text-align: center; text-wrap: balance;
    }

    .step-grid { display: flex; flex-direction: column; }

    .step {
      display: flex; gap: 36px; align-items: flex-start;
      padding: 40px 0;
    }
    .step + .step { border-top: 1px solid rgba(42,39,35,.1); }

    .step-num {
      font-family: var(--ff);
      font-size: 40px; font-weight: 300; line-height: 1;
      letter-spacing: -.02em; color: rgba(42,39,35,.38);
      flex-shrink: 0; width: 58px; text-align: right;
      padding-top: 3px;
    }

    .step-content { display: flex; flex-direction: column; gap: 14px; }

    .step-title {
      font-family: var(--ff);
      font-size: 18px; font-weight: 600;
      line-height: 1.3; letter-spacing: -.01em; color: var(--t);
    }

    .step-body {
      font-family: var(--ff);
      font-size: 17px; font-weight: 300;
      line-height: 1.85; color: var(--t);
    }

    .pre-grid { display: flex; flex-direction: column; gap: 10px; width: 280px; margin: 0 auto; }

    .pre-tag {
      border: 1.5px solid rgba(42,39,35,.22);
      border-radius: 5px; padding: 14px 28px;
      font-family: var(--ff); font-size: 13px; font-weight: 500;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--t); background: var(--bg0); text-align: center; width: 100%;
    }

    .pre-then {
      font-family: var(--ff); font-size: 15px; font-weight: 400;
      color: var(--tm); padding: 8px 0; text-align: center;
    }

    .pre-tag--final { background: var(--t); color: var(--bg); border-color: var(--t); text-wrap: balance; }

    /* ══ S6 — NA PRÁTICA ══ */
    #prova-social { background: var(--bg2); padding: 88px 0; }
    #prova-social .wrap-c { display: flex; flex-direction: column; gap: 56px; }
    .proof-title {
      font-size: clamp(24px, 3.2vw, 40px); font-weight: 600;
      line-height: 1.2; letter-spacing: -.02em; color: var(--t);
      text-wrap: balance; text-align: center;
    }
    .proof-segments { display: flex; flex-direction: column; gap: 16px; }
    .seg-card {
      background: var(--bg0); border-radius: 12px; padding: 28px 28px 32px;
      box-shadow: 0 1px 3px rgba(42,39,35,.05), 0 6px 20px rgba(42,39,35,.08);
      display: flex; flex-direction: column; gap: 0;
    }
    .seg-tag {
      font-size: 11px; font-weight: 500; letter-spacing: .14em;
      text-transform: uppercase; color: var(--tf); margin-bottom: 14px;
    }
    .seg-number {
      font-size: clamp(36px, 4.5vw, 52px); font-weight: 300;
      line-height: 1; letter-spacing: -.03em; color: var(--t); margin-bottom: 6px;
    }
    .seg-number-label {
      font-size: 13px; font-weight: 500; letter-spacing: .03em;
      color: var(--tm); margin-bottom: 20px;
    }
    .seg-divider { border: none; border-top: 1px solid rgba(42,39,35,.08); margin-bottom: 16px; }
    .seg-data {
      font-size: 13px; font-weight: 400; line-height: 1; color: var(--tm); margin-bottom: 8px;
    }
    .seg-data:last-of-type { margin-bottom: 0; }
    .seg-obs {
      font-size: 13px; font-weight: 400; line-height: 1.6; color: var(--tm);
      margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(42,39,35,.08);
    }
    .seg-period {
      font-size: 11px; font-weight: 500; letter-spacing: .12em;
      text-transform: uppercase; color: var(--tf); margin-top: 16px;
    }

    /* ══ S7 — SOBRE DANIEL ══ */
    #sobre { background: var(--bg); padding: 104px 0; }
    #sobre .wrap-c { display: flex; flex-direction: column; }

    .sobre-card {
      background: var(--bg2); border-radius: 16px; padding: 48px;
      display: flex; flex-direction: column; gap: 32px;
      box-shadow: 0 4px 8px rgba(42,39,35,.10), 0 16px 48px rgba(42,39,35,.20);
    }

    .sobre-head { display: flex; align-items: center; gap: 20px; }

    .sobre-photo {
      width: 72px; height: 72px; border-radius: 50%;
      overflow: hidden; flex-shrink: 0;
      border: 2px solid var(--bg2);
    }
    .sobre-photo img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top; display: block;
    }

    .sobre-identity { display: flex; flex-direction: column; gap: 5px; }

    .sobre-name {
      font-family: var(--ff);
      font-size: clamp(24px, 3.2vw, 40px);
      font-weight: 600; line-height: 1.2; letter-spacing: -.02em; color: var(--t);
    }

    .sobre-brand {
      font-family: var(--ff); font-size: 13px; font-weight: 400;
      letter-spacing: .1em; text-transform: uppercase; color: var(--tm);
    }

    .sobre-body {
      font-family: var(--ff); font-size: 17px; font-weight: 300;
      line-height: 1.85; color: var(--t);
    }

    .sobre-stats { display: flex; flex-direction: column; gap: 14px; }

    .sobre-stat {
      font-family: var(--ff); font-size: 17px; font-weight: 400;
      line-height: 1.6; color: var(--t);
    }
    .sobre-stat--ph { color: var(--tm); }

    /* ══ S8 — OFERTA ══ */
    #oferta { background: var(--bg2); padding: 104px 0; }
    #oferta .wrap-c { display: flex; flex-direction: column; gap: 40px; }

    .oferta-title {
      font-family: var(--ff); font-size: clamp(24px, 3.2vw, 40px);
      font-weight: 600; line-height: 1.2; letter-spacing: -.02em; color: var(--t);
      text-align: center; text-wrap: balance;
    }

    .oferta-cta { align-self: center; display: flex; align-items: center; gap: 16px; }

    .oferta-avatar {
      width: 48px; height: 48px; border-radius: 50%;
      overflow: hidden; flex-shrink: 0;
      border: 2px solid rgba(42,39,35,.1);
    }
    .oferta-avatar img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top; display: block;
    }

    .oferta-cards { display: flex; flex-direction: column; gap: 20px; }

    .oferta-card {
      border-radius: 16px; padding: 48px;
      display: flex; flex-direction: column; gap: 28px;
    }
    .notion-preview {
      overflow: hidden; border-radius: 8px;
      height: 300px; margin-top: 4px;
      box-shadow: 0 4px 12px rgba(42,39,35,.10), 0 16px 40px rgba(42,39,35,.14);
    }
    .notion-preview img {
      width: 210%; height: auto; display: block;
      margin-left: -5%;
    }
    .oferta-card--dark { background: var(--bgd); }
    .oferta-card--light {
      background: var(--bg);
      box-shadow: 0 1px 3px rgba(42,39,35,.05), 0 6px 20px rgba(42,39,35,.08);
    }

    .oferta-label {
      font-family: var(--ff); font-size: 11px; font-weight: 500;
      letter-spacing: .14em; text-transform: uppercase;
    }
    .oferta-card--dark .oferta-label { color: rgba(245,242,235,.60); }
    .oferta-card--light .oferta-label { color: var(--tf); }

    .oferta-body {
      font-family: var(--ff); font-size: 17px; font-weight: 300; line-height: 1.85;
    }
    .oferta-card--dark .oferta-body { color: var(--bg); }
    .oferta-card--light .oferta-body { color: var(--t); }

    .btn-light { background: var(--bg); color: var(--t); border-color: var(--bg); }
    .btn-light:hover { background: var(--bg2); }

    /* ══ S9 — FAQ ══ */
    #faq { background: var(--bg); padding: 104px 0; }
    #faq .wrap-c { display: flex; flex-direction: column; gap: 48px; }

    .faq-title {
      font-family: var(--ff); font-size: clamp(24px, 3.2vw, 40px);
      font-weight: 600; line-height: 1.2; letter-spacing: -.02em; color: var(--t);
      text-align: center;
    }

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

    .faq-q {
      width: 100%; display: flex; align-items: center; justify-content: space-between;
      gap: 24px; padding: 28px 0; background: none; border: none; cursor: pointer;
      font-family: var(--ff); font-size: 17px; font-weight: 600;
      line-height: 1.4; letter-spacing: -.01em; color: var(--t); text-align: left;
    }
    .faq-q:hover { color: var(--tm); }

    .faq-icon {
      flex-shrink: 0; font-size: 18px; font-weight: 300;
      color: var(--tm); line-height: 1; width: 18px; text-align: center;
    }
    .faq-icon::before { content: "+"; }
    .faq-q[aria-expanded="true"] .faq-icon::before { content: "−"; }

    .faq-a {
      overflow: hidden; max-height: 0; opacity: 0;
      transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1),
                  padding-bottom .45s cubic-bezier(0.4, 0, 0.2, 1),
                  opacity .3s ease .08s;
      padding-bottom: 0;
    }
    .faq-a.open { max-height: 600px; padding-bottom: 28px; opacity: 1; }

    .faq-a p {
      font-family: var(--ff); font-size: 17px; font-weight: 300;
      line-height: 1.85; color: var(--tm);
    }

    /* ══ S10 — CTA FINAL ══ */
    #cta-final {
      background: var(--bgd);
      padding: 200px 0;
      position: relative;
    }
    #cta-final::before {
      content: ""; position: absolute; inset: 0;
      pointer-events: none; z-index: 0;
      background-image:
        linear-gradient(rgba(245,242,235,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,242,235,.05) 1px, transparent 1px);
      background-size: 40px 40px;
      -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, black 15%, transparent 78%);
      mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, black 15%, transparent 78%);
    }
    #cta-final .wrap-c {
      display: flex; flex-direction: column;
      align-items: center; gap: 56px;
      text-align: center;
      position: relative; z-index: 1;
    }
    .cta-lead {
      font-size: clamp(24px, 3.2vw, 40px); font-weight: 600;
      line-height: 1.2; letter-spacing: -.02em;
      color: var(--bg); text-wrap: balance;
    }
    .cta-body {
      font-size: 19px; font-weight: 500; line-height: 1.65;
      color: rgba(245,242,235,.90); text-wrap: balance; max-width: 500px;
    }
    .cta-bridge {
      font-size: 17px; font-weight: 300; line-height: 1.85;
      color: rgba(245,242,235,.72);
    }
    .btn-inv {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 10px; font-family: var(--ff);
      font-size: 15px; font-weight: 500; letter-spacing: .01em;
      padding: 15px 28px 15px 34px; border-radius: 5px;
      background: var(--bg); color: var(--t);
      border: 1.5px solid var(--bg); min-height: 50px;
      text-decoration: none;
      transition: background .2s, gap .2s;
    }
    .btn-inv:hover { background: #EDE9E1; gap: 13px; }
    .btn-inv:active { transform: scale(.98); }
    .btn-inv .btn-arrow { transition: transform .2s ease; }
    .btn-inv:hover .btn-arrow { transform: translate(2px, -2px); }

    /* ══ FOOTER ══ */
    footer { background: var(--bg); padding: 72px 0; }
    footer .wrap-c { display: flex; flex-direction: column; gap: 0; }
    .footer-top {
      display: flex; align-items: center; justify-content: space-between;
      padding-bottom: 28px;
    }
    .footer-logo {
      width: 32px; height: 32px; border-radius: 7px;
      overflow: hidden; flex-shrink: 0; display: block;
    }
    .footer-logo svg { width: 100%; height: 100%; display: block; }
    .footer-socials { display: flex; gap: 20px; align-items: center; }
    .footer-social {
      color: var(--tf); display: flex;
      transition: color .2s;
    }
    .footer-social:hover { color: var(--tm); }
    .footer-sep { border: none; border-top: 1px solid rgba(42,39,35,.10); margin: 0; }
    .footer-bottom {
      display: flex; align-items: flex-start;
      padding-top: 24px;
    }
    .footer-legal {
      font-size: 11px; font-weight: 400; color: var(--tf);
      letter-spacing: .02em; display: flex; flex-direction: column; gap: 10px;
    }
    .footer-privacy {
      font-size: 11px; font-weight: 400; color: var(--tf);
      text-decoration: none; letter-spacing: .02em;
    }
    .footer-privacy:hover { color: var(--tm); }

    /* ══ KEYFRAMES ══ */
    @keyframes fade-up {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%,100% { opacity: .18; transform: scaleY(1); }
      50%      { opacity: .6;  transform: scaleY(1.12); }
    }

    /* ══ CURSOR ══ */
    #cursor {
      position: fixed; width: 15px; height: 15px; border-radius: 50%;
      background: var(--t); pointer-events: none; z-index: 9999;
      transform: translate(-50%, -50%); opacity: .2;
      transition: left .08s linear, top .08s linear,
                  width .22s ease, height .22s ease, opacity .22s ease;
    }
    #cursor.hover { width: 40px; height: 40px; opacity: .08; }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 640px) {
      nav { padding: 24px 20px; }
      nav.scrolled { padding: 14px 20px; }
      #hero { padding: 120px 0 80px; }
      .hero-inner, .wrap-c { padding: 0 24px; }
      .hero-h1 { font-size: clamp(30px, 8.5vw, 44px); }
      .hero-sub { font-size: 16px; }
      .cta-row { gap: 10px; width: 100%; justify-content: center; }
      .btn-primary { flex: 1; max-width: 280px; font-size: 14px; }
      #icp { padding: 72px 0; }
      .icp-grid { gap: 12px; }
      .icp-card { flex-direction: column; gap: 14px; padding: 24px 24px 28px; text-align: center; align-items: center; }
      .card-num { width: auto; text-align: center; }
      .icp-title { margin-bottom: 40px; }
      .icp-closing { font-size: 17px; }
      #cicatriz { padding: 72px 0; }
      .scar-quote { font-size: 17px; }
      #guia { padding: 72px 0; }
      #estrutura { padding: 72px 0; }
      .step { padding: 28px 0; gap: 16px; flex-direction: column; }
      .step-num { width: auto; text-align: left; }
      #prova-social { padding: 56px 0; }
      .seg-card { padding: 24px 24px 28px; text-align: center; }
      #sobre { padding: 72px 0; }
      .sobre-card { padding: 32px 24px; }
      #oferta { padding: 72px 0; }
      .oferta-card { padding: 32px 24px; }
      .sobre-head { gap: 16px; }
      .sobre-photo { width: 60px; height: 60px; }
      .pre-grid { width: 100%; max-width: 280px; }
      .pre-tag { padding: 12px 20px; font-size: 12px; }
      #faq { padding: 72px 0; }
      .faq-q { font-size: 16px; padding: 22px 0; }
      #cursor { display: none; }
      #cta-final { padding: 104px 0; }
      footer { padding: 40px 0; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    }
  

    /* ══ POLICY PAGE ══ */
    .policy-wrapper {
      padding: 120px 0 104px;
      background: var(--bg);
    }
    .policy-wrapper .wrap-c {
      display: flex;
      flex-direction: column;
      gap: 56px;
    }
    .policy-header {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(42,39,35,.10);
    }
    .policy-h1 {
      font-size: clamp(24px, 3.2vw, 40px);
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -.02em;
      color: var(--t);
      text-wrap: balance;
    }
    .policy-date {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .12em;
      color: var(--tf);
      text-transform: uppercase;
    }
    .policy-sections {
      display: flex;
      flex-direction: column;
      gap: 48px;
    }
    .policy-section {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .policy-h2 {
      font-size: 18px;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: -.01em;
      color: var(--t);
    }
    .policy-text {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--t);
    }
    .policy-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-left: 0;
      list-style: none;
    }
    .policy-list li {
      font-size: 17px;
      font-weight: 300;
      line-height: 1.85;
      color: var(--t);
      padding-left: 22px;
      position: relative;
    }
    .policy-list li::before {
      content: "—";
      position: absolute;
      left: 0;
      color: var(--tf);
    }
    .policy-table {
      width: 100%;
      border-collapse: collapse;
    }
    .policy-table th {
      font-family: var(--ff);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--tf);
      text-align: left;
      padding: 0 20px 12px 0;
      border-bottom: 1px solid rgba(42,39,35,.12);
    }
    .policy-table td {
      font-family: var(--ff);
      font-size: 15px;
      font-weight: 300;
      color: var(--t);
      line-height: 1.6;
      padding: 14px 20px 14px 0;
      border-bottom: 1px solid rgba(42,39,35,.06);
      vertical-align: top;
    }
    .policy-table td:first-child {
      font-weight: 400;
      white-space: nowrap;
      width: 36%;
    }
    .policy-table tr:last-child td { border-bottom: none; }
    .policy-contact-card {
      background: var(--bg2);
      border-radius: 12px;
      padding: 32px 36px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .policy-contact-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--tf);
      margin-bottom: 6px;
    }
    .policy-contact-line {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.72;
      color: var(--tm);
    }
    .policy-contact-line a {
      color: var(--t);
      text-decoration: none;
    }
    .policy-contact-line a:hover { text-decoration: underline; }

    @media (max-width: 640px) {
      .policy-wrapper { padding: 96px 0 72px; }
      .policy-table td:first-child { white-space: normal; width: auto; }
      .policy-contact-card { padding: 24px 20px; }
    }