
    /* ── RESET ────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ── TOKENS ───────────────────────────────── */
    :root {
      --bg:     #F1EEE6;
      --paper:  #F7F5EF;
      --ink:    #1B2A36;
      --accent: #C2912F;
      --accent-text: #8A6114;
      --mute:   #5A5444;
      --faint:  #716A5B;
      --line:   #DED8CA;

      --container: 1380px;
      --gutter:    40px;
      --r-btn:     3px;
      --r-img:     8px;
      --r-card:    6px;

      --nav-h: 64px;
    }

    /* ── BASE ─────────────────────────────────── */
    body {
      font-family: 'Hanken Grotesk', sans-serif;
      background: var(--bg);
      color: var(--ink);
      font-size: 16px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    .container {
      max-width: var(--container);
      margin-inline: auto;
      padding-inline: var(--gutter);
    }

    /* ── TYPE TOKENS ──────────────────────────── */
    .eyebrow {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent-text);
    }

    .trust-label {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--faint);
    }

    /* ── BUTTONS ──────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 52px;
      padding-inline: 28px;
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border-radius: var(--r-btn);
      cursor: pointer;
      white-space: nowrap;
      transition: opacity 0.18s;
      min-width: 44px;
      margin: 30px 0 30px;
    }
    .btn:hover { opacity: 0.78; }

    .btn--primary {
      background: var(--ink);
      color: #fff;
      border: 2px solid var(--ink);
    }
    .cta__copy {
      font-size: 16px;
      text-align: center;
    }

    .btn--outline {
      background: transparent;
      color: var(--ink);
      border: 2px solid var(--ink);
    }

    /* ── NAV ──────────────────────────────────── */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      height: var(--nav-h);
      background: rgba(241, 238, 230, 0.84);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
      padding-block: 50px;
    }
    .nav__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%; 
      min-height: inherit;
    }

.nav__wordmark {
  display: flex;
  align-items: center;
  /* Removemos a font-family e tamanho daqui pois agora você está usando uma imagem física em vez de texto puro */
}

.nav__logo-img {
  height: 45px; /* Define uma altura máxima ideal para a barra de navegação */
  width: auto;  /* Faz a largura se ajustar proporcionalmente, evitando distorções */
  display: block;
  object-fit: contain; /* Garante que a imagem inteira caiba no espaço sem cortes */
  
}
    .nav__right {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav__links {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-right: 16px;
    }
    .nav__link {
      font-size: 14px;
      font-weight: 600;
      color: var(--mute);
      transition: color 0.18s;
    }
    .nav__link:hover { color: var(--ink); }
    .nav__link--mobile-action { display: none; }
    .nav__phone {
      font-size: 15px;
      font-weight: 700;
      color: var(--mute);
      transition: color 0.18s;
      margin-right: 16px;
      text-decoration: none;
    }
    .nav__phone:hover { color: var(--ink); }
    .nav__pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 38px;
      padding-inline: 18px;
      background: var(--ink);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.01em;
      border-radius: var(--r-btn);
      transition: opacity 0.18s;
      white-space: nowrap;
    }
    .nav__pill:hover { opacity: 0.82; }
    .nav__menu {
      display: none;
      align-items: center;
      justify-content: center;
      min-width: 44px;
      height: 38px;
      padding-inline: 14px;
      border: 1px solid var(--ink);
      border-radius: var(--r-btn);
      background: transparent;
      color: var(--ink);
      font: inherit;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
    }

    /* ── HERO SECTION ─────────────────────────── */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      min-height: calc(100svh - var(--nav-h));
      padding-block: clamp(56px, 7vw, 80px);
      overflow: hidden;
      gap: 0 0;
    }

    /* ── HERO CONTENT ─────────────────────────── */
    .hero__content {
      display: flex;
      flex-direction: column;
      gap: 28px;
      padding-right: 64px;
    }

    .hero__eyebrow {
      transform: translateY(-22px);
      opacity: 0;
      transition:
        transform 0.78s cubic-bezier(.16,.84,.3,1),
        opacity   0.60s cubic-bezier(.16,.84,.3,1);
      transition-delay: 0.02s;
    }
    .hero--entered .hero__eyebrow {
      transform: translateY(0);
      opacity: 1;
    }

    /* H1 */
    .hero__h1 {
      font-family: 'Fraunces', serif;
      font-size: clamp(42px, 5.8vw, 86px);
      line-height: 1.2;
      letter-spacing: -0.01em;
      font-weight: 600;
      color: var(--ink);
    }
    .hero__h1 .accent { color: var(--accent-text); font-style: normal; }

    /* Word-split animation atoms */
    .w {
      display: inline-block;
      /* Each word clips its own travel */
      overflow: hidden;
      vertical-align: bottom;
      line-height: inherit;
    }
    .w > span {
      display: inline-block;
      transform: translateY(-26px);
      opacity: 0;
      transition:
        transform 0.78s cubic-bezier(.16,.84,.3,1),
        opacity   0.60s cubic-bezier(.16,.84,.3,1);
      transition-delay: calc(var(--d, 0) * 0.06s + 0.05s);
    }
    .hero--entered .w > span {
      transform: translateY(0);
      opacity: 1;
    }

    /* Hero sub — drop from above, delayed */
    .hero__sub {
      font-size: 19px;
      line-height: 1.6;
      color: var(--mute);
      max-width: 34em;
      transform: translateY(-22px);
      opacity: 0;
      transition:
        transform 0.78s cubic-bezier(.16,.84,.3,1),
        opacity   0.60s cubic-bezier(.16,.84,.3,1);
      transition-delay: 0.52s;
      padding: 0 0 30px;
    }
    .hero--entered .hero__sub {
      transform: translateY(0);
      opacity: 1;
    }

    .hero__phone {
      display: none;
    }

    /* Scope tags — drop from above, slightly after sub */
    .hero__tags {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 24px;
      margin-top: -10px;
      transform: translateY(-22px);
      opacity: 0;
      transition:
        transform 0.78s cubic-bezier(.16,.84,.3,1),
        opacity   0.60s cubic-bezier(.16,.84,.3,1);
      transition-delay: 0.62s;
    }
    .hero--entered .hero__tags {
      transform: translateY(0);
      opacity: 1;
    }
    .hero__tags li {
      font-size: 14px;
      font-weight: 500;
      color: var(--mute);
      display: flex;
      align-items: flex-start;
      gap: 7px;
    }
    .hero__tags li::before {
      content: "✓";
      color: var(--ink);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* CTAs — RISE from below (opposite direction, bigger travel) */
    .hero__ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: -8px;
      transform: translateY(40px);
      opacity: 0;
      transition:
        transform 0.78s cubic-bezier(.16,.84,.3,1),
        opacity   0.60s cubic-bezier(.16,.84,.3,1);
      transition-delay: 0.80s;
    }
    .hero--entered .hero__ctas {
      transform: translateY(0);
      opacity: 1;
    }

    /* Trust line — RISE from below, even later */
    .hero__trust {
      transform: translateY(40px);
      opacity: 0;
      transition:
        transform 0.78s cubic-bezier(.16,.84,.3,1),
        opacity   0.60s cubic-bezier(.16,.84,.3,1);
      transition-delay: 0.94s;
    }
    .hero--entered .hero__trust {
      transform: translateY(0);
      opacity: 1;
    }

    /* ── HERO IMAGE ───────────────────────────── */
    .hero__media {
      position: relative;
      height: min(calc(100svh - var(--nav-h) - 144px), 760px);
      min-height: 440px;
      border-radius: var(--r-img);
      overflow: hidden;
      /* Slide in from right edge */
      transform: translateX(72vw);
      opacity: 0;
      transition:
        transform 1.2s cubic-bezier(.16,.84,.3,1),
        opacity   0.35s ease;
      transition-delay: 0.08s;
      /* Contain cursor parallax */
      will-change: transform;
    }
    .hero--entered .hero__media {
      transform: translateX(0);
      opacity: 1;
    }

    .hero__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      /* Editorial grade: desaturate + slight contrast boost */
      filter: saturate(0.80) contrast(1.06) brightness(1.02);
      /* Slightly oversized for cursor parallax */
      transform: scale(1.07) translate(0, 0);
      transition: transform 0.1s linear;
    }

    /* ── PLACEHOLDER BLOCKS ───────────────────── */
    .placeholder {
      padding-block: 96px;
      border-top: 1px solid var(--line);
      text-align: center;
      color: var(--faint);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    /* ── MOBILE ───────────────────────────────── */
    @media (max-width: 900px) {
      :root { --gutter: 20px; }

      .nav {
        padding-block: 32px;
      }

      .nav__inner {
        position: relative;
        justify-content: space-between;
        gap: 16px;
      }

      .nav__wordmark {
        max-width: calc(100% - 92px);
      }

      .nav__logo-img {
        max-width: 100%;
      }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 0;
        gap: 0;
      }

      /* Photo on top, rises in from above */
      .hero__media {
        order: -1;
        height: clamp(220px, 54vw, 380px);
        min-height: unset;
        border-radius: 0;
        /* Change direction: rises up from below on mobile */
        transform: translateY(40px);
      }
      .hero--entered .hero__media {
        transform: translateY(0);
        transition:
          transform 1.0s cubic-bezier(.16,.84,.3,1),
          opacity   0.35s ease;
      }

      .hero__content {
        padding: 34px var(--gutter) 44px;
        padding-right: var(--gutter);
        gap: 16px;
        min-width: 0;
      }

      .hero__h1 {
        font-size: clamp(36px, 6.4vw, 52px);
        line-height: 1.08;
      }

      .hero__sub {
        max-width: min(100%, 31ch);
        overflow-wrap: anywhere;
      }

      .hero__phone {
        display: inline-flex;
        width: fit-content;
        min-height: 44px;
        align-items: center;
        color: var(--ink);
        font-size: 14px;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 4px;
        margin-bottom: 8px;
      }

      .hero__ctas {
        flex-direction: column;
        order: 4;
        margin-top: 0;
      }
      .hero__ctas .btn { width: min(100%, 360px); }
      .hero__tags { order: 5; }
      .hero__trust { order: 6; }

      .nav__phone { display: none; }
      .nav__links {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 10px var(--gutter) 18px;
        background: rgba(241, 238, 230, 0.96);
        border-bottom: 1px solid var(--line);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition:
          transform 0.22s cubic-bezier(.16,.84,.3,1),
          opacity 0.18s ease;
      }
      .nav.nav--open .nav__links {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }
      .nav__link {
        padding-block: 13px;
        border-bottom: 1px solid var(--line);
      }
      .nav__link--mobile-action {
        display: block;
        color: var(--ink);
        font-weight: 700;
      }
      .nav__links .nav__phone {
        display: block;
        padding-block: 13px;
        border-bottom: 1px solid var(--line);
      }
      .nav__right {
        position: absolute;
        top: 50%;
        right: var(--gutter);
        transform: translateY(-50%);
        width: 68px;
        gap: 8px;
        justify-content: flex-end;
      }
      .nav__pill {
        display: none;
      }
      .nav__menu {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        min-width: 68px;
      }
    }

    @media (max-width: 480px) {
      .nav__wordmark {
        font-size: 19px;
      }

      .nav__logo-img {
        height: 36px;
      }

      .hero__h1 {
        font-size: clamp(32px, 9.3vw, 37px);
        line-height: 1.08;
        max-width: 100%;
        overflow-wrap: anywhere;
      }

      .hero__sub {
        font-size: 16px;
        line-height: 1.5;
        padding-bottom: 16px;
      }

      .hero__tags {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 12px;
        margin-top: 0;
      }

      .hero__tags li {
        font-size: 13px;
        line-height: 1.35;
      }
    }

    @media (min-width: 760px) and (max-width: 900px) {
      .nav__right {
        position: static;
        width: auto;
        transform: none;
        gap: 20px;
        margin-left: auto;
      }

      .nav__links {
        position: static;
        display: flex;
        align-items: center;
        gap: 18px;
        margin-right: 0;
        padding: 0;
        background: transparent;
        border-bottom: 0;
        transform: none;
        opacity: 1;
        pointer-events: auto;
      }

      .nav__link {
        padding-block: 0;
        border-bottom: 0;
      }

      .nav__link--mobile-action,
      .nav__phone,
      .nav__menu {
        display: none;
      }

      .nav__pill {
        display: inline-flex;
      }
    }

    @media (max-width: 759px) {
      .nav__right {
        position: static;
        width: auto;
        transform: none;
        margin-left: auto;
      }

      .nav__menu {
        display: inline-flex;
      }
    }

    @media (max-width: 400px) {
      .hero__content {
        padding-top: 28px;
      }

      .hero__h1 {
        font-size: clamp(30px, 8.8vw, 34px);
      }
    }

    /* ── MARQUEE (Block 2) ────────────────────── */
    .marquee {
      border-top: 1px solid var(--line);
      padding-top: 52px;
      padding-bottom: 64px;
      overflow: hidden;
      opacity: 0;
      transition: opacity 0.9s ease;
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }
    .marquee.revealed { opacity: 1; }

    .marquee__label {
      text-align: center;
      margin-bottom: 36px;
    }

    .marquee__track {
      display: flex;
      width: max-content;
      animation: marquee-scroll 55s linear infinite;
      will-change: transform;
    }
    .marquee:hover .marquee__track { animation-play-state: paused; }

    .marquee__group {
      display: flex;
      gap: 14px;
      padding-right: 14px;
    }

    .marquee__img {
      width: 248px;
      height: 170px;
      object-fit: cover;
      border-radius: 6px;
      flex: 0 0 auto;
    }

    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    @media (max-width: 900px) {
      .marquee__img { width: 190px; height: 130px; }
    }

    /* ── BLOCK 3: THE REAL PROBLEM ───────────── */
    .problem {
      background: var(--paper);
      border-top: 1px solid var(--line);
      padding-block: 96px;
      overflow: hidden;
    }

    .problem__grid {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: clamp(48px, 7vw, 112px);
      align-items: start;
    }

    .problem__left {
      opacity: 0;
      transform: translateX(100vw);
      transition:
        transform 1.0s cubic-bezier(.16,.84,.3,1),
        opacity 0.7s cubic-bezier(.16,.84,.3,1);
    }

    .problem__right {
      opacity: 0;
      transition: opacity 0.7s ease;
      transition-delay: 0.08s;
    }

    .problem__point {
      opacity: 0;
      transform: translateX(100vw);
      transition:
        transform 1.0s cubic-bezier(.16,.84,.3,1),
        opacity 0.7s cubic-bezier(.16,.84,.3,1);
    }

    .problem.revealed .problem__left {
      opacity: 1;
      transform: translateX(0);
    }

    .problem.revealed .problem__right {
      opacity: 1;
      transition-delay: 0.08s;
    }

    .problem.revealed .problem__point {
      opacity: 1;
      transform: translateX(0);
    }

    .problem.revealed .problem__point:nth-child(1) { transition-delay: 0.18s; }
    .problem.revealed .problem__point:nth-child(2) { transition-delay: 0.30s; }
    .problem.revealed .problem__point:nth-child(3) { transition-delay: 0.42s; }

    .problem__eyebrow {
      margin-bottom: 22px;
    }

    .problem__h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(30px, 3.6vw, 52px);
      line-height: 1.04;
      letter-spacing: -0.01em;
      font-weight: 600;
      color: var(--ink);
      text-wrap: balance;
    }

    .problem__lead {
      max-width: 40em;
      font-size: 19px;
      line-height: 1.6;
      color: var(--mute);
      text-wrap: pretty;
    }

    .problem__points {
      display: grid;
      gap: 28px;
      margin-top: 42px;
      padding-top: 36px;
      border-top: 1px solid var(--line);
    }

    .problem__point {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 22px;
    }

    .problem__number {
      font-family: 'Fraunces', serif;
      font-size: 30px;
      line-height: 1;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--accent-text);
    }

    .problem__point h3 {
      font-size: 18px;
      line-height: 1.25;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 7px;
    }

    .problem__point p {
      max-width: 34em;
      color: var(--mute);
    }

    @media (max-width: 900px) {
      .problem {
        padding-block: 64px;
      }

      .problem__grid {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .problem__points {
        margin-top: 34px;
      }
    }

    @media (max-width: 560px) {
      .problem__point {
        grid-template-columns: 1fr;
        gap: 10px;
      }
    }

    /* ── BLOCK 4: SOCIAL PROOF (bento) ─────────── */
    .proof2 {
      background: var(--bg);
      border-top: 1px solid var(--line);
      padding-block: 96px;
      overflow: hidden;
    }

    .proof2__eyebrow {
      margin-bottom: 22px;
    }

    .proof2__h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(30px, 3.6vw, 52px);
      line-height: 1.04;
      letter-spacing: -0.01em;
      font-weight: 600;
      color: var(--ink);
      text-wrap: balance;
      max-width: 16em;
      margin-bottom: 44px;
    }

    .bento {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .bento-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--r-card);
      padding: 30px 32px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 24px;
      margin: 0;
    }

    .bento-feature {
      grid-row: span 2;
      background: var(--ink);
      border-color: var(--ink);
    }

    .bento-bottom {
      grid-column: 1 / -1;
    }

    .bento-card .bq {
      font-family: 'Fraunces', serif;
      font-weight: 500;
      font-size: 18px;
      line-height: 1.45;
      color: var(--ink);
      text-wrap: pretty;
    }

    .bento-feature .bq {
      color: var(--paper);
      font-size: clamp(20px, 2.2vw, 28px);
      line-height: 1.4;
    }

    .bq-by {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .bq-name {
      font-weight: 700;
      font-size: 15px;
      color: var(--ink);
    }

    .bento-feature .bq-name {
      color: var(--paper);
    }

    .bq-co {
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.03em;
      color: var(--accent-text);
    }

    .bento-feature .bq-co {
      color: var(--accent);
    }

    .proof2__eyebrow,
    .proof2__h2,
    .bento-card {
      opacity: 0;
      transform: translateY(34px);
      transition:
        transform 0.86s cubic-bezier(.16,.84,.3,1),
        opacity 0.68s cubic-bezier(.16,.84,.3,1);
    }

    .proof2.revealed .proof2__eyebrow,
    .proof2.revealed .proof2__h2,
    .proof2.revealed .bento-card {
      opacity: 1;
      transform: translateY(0);
    }

    .proof2.revealed .proof2__h2              { transition-delay: 0.08s; }
    .proof2.revealed .bento-card:nth-child(1) { transition-delay: 0.16s; }
    .proof2.revealed .bento-card:nth-child(2) { transition-delay: 0.24s; }
    .proof2.revealed .bento-card:nth-child(3) { transition-delay: 0.32s; }
    .proof2.revealed .bento-card:nth-child(4) { transition-delay: 0.40s; }

    @media (max-width: 860px) {
      .proof2 {
        padding-block: 64px;
      }

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

      .bento-feature {
        grid-row: auto;
      }

      .bento-bottom {
        grid-column: auto;
      }

      .bento-feature .bq {
        font-size: 20px;
      }
    }

    @media (max-width: 480px) {
      .proof2 {
        padding-block: 56px;
      }

      .bento-card {
        padding: 24px 20px;
      }

      .bento-card .bq {
        font-size: 16px;
      }

      .bento-feature .bq {
        font-size: 18px;
      }
    }

    /* ── BLOCK 5: OWNER-OPERATOR ─────────────── */
    .owner {
      background: var(--ink);
      color: var(--paper);
      padding-block: 96px;
      overflow: hidden;
    }

    .owner__grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: clamp(48px, 7vw, 112px);
      align-items: start;
    }

    .owner__media {
      min-height: 620px;
      border-radius: var(--r-img);
      overflow: hidden;
      background: rgba(247, 245, 239, 0.08);
    }

    .owner__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: saturate(0.82) contrast(1.06) brightness(0.96);
    }

    .owner__eyebrow {
      margin-bottom: 22px;
      color: var(--accent-text);
    }

    .owner__h2 {
      max-width: 820px;
      font-family: 'Fraunces', serif;
      font-size: clamp(30px, 3.6vw, 52px);
      line-height: 1.04;
      letter-spacing: -0.01em;
      font-weight: 600;
      color: var(--paper);
      text-wrap: balance;
    }

    .owner__proof {
  display: flex;
  gap: 40px;
  margin: 50px 0 40px;
  flex-wrap: wrap;
}
.owner__proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.owner__proof-big {
  font-family: 'Fraunces', Georgia, serif;    /* Fraunces */
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  color: var(--accent);            /* ocre */
}
.owner__proof-sub {
  font-size: 13px;
  letter-spacing: .02em;
  color: #A9A89F;                  /* cinza claro do bloco escuro */
}
@media (max-width: 600px) {
  .owner__proof { gap: 24px; }
  .owner__proof-big { font-size: 22px; }
}

    .owner__lead {
      max-width: 42em;
      margin-top: 50px;
      margin-bottom: 80px;
      font-size: 19px;
      line-height: 1.68;
      color: rgba(247, 245, 239, 0.82);
      text-wrap: pretty;
    }

    .owner__signature {
      margin-top: 42px;
      padding-top: 24px;
      border-top: 1px solid rgba(247, 245, 239, 0.18);
      font-size: 14px;
      line-height: 1.5;
      font-weight: 700;
      letter-spacing: 0.08em;
      color: rgba(247, 245, 239, 0.78);
    }
.owner__attrs {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #A9A89F;          /* cinza claro */
  margin-bottom: 15px;
  margin-top: 10px;
}

    .owner__signature-label {
      color: var(--accent-text);
      font-size: 16px;
    }

    .owner__media,
    .owner__copy {
      opacity: 0;
      transform: translateY(34px);
      transition:
        transform 0.86s cubic-bezier(.16,.84,.3,1),
        opacity 0.68s cubic-bezier(.16,.84,.3,1);
    }

    .owner.revealed .owner__media,
    .owner.revealed .owner__copy {
      opacity: 1;
      transform: translateY(0);
    }

    .owner.revealed .owner__copy {
      transition-delay: 0.12s;
    }

    @media (max-width: 900px) {
      .owner {
        padding-block: 64px;
      }

      .owner__grid {
        grid-template-columns: 1fr;
        gap: 38px;
      }

      .owner__media {
        min-height: auto;
        aspect-ratio: 4 / 5;
      }
    }

    /* ── BLOCK 6: CTA ────────────────────────── */
    .cta {
      background: var(--paper);
      border-top: 1px solid var(--line);
      padding-block: 96px;
      overflow: hidden;
    }

    .cta__intro {
      max-width: 760px;
      margin-inline: auto;
      text-align: center;
      margin-bottom: 58px;
    }

    .cta__eyebrow {
      margin-bottom: 22px;
    }

    .cta__h2 {
      font-family: 'Fraunces', serif;
      font-size: clamp(30px, 3.6vw, 52px);
      line-height: 1.04;
      letter-spacing: -0.01em;
      font-weight: 600;
      color: var(--ink);
      text-wrap: balance;
    }

    .cta__lead {
      max-width: 34em;
      margin: 24px auto 0;
      font-size: 19px;
      line-height: 1.6;
      color: var(--mute);
      text-wrap: pretty;
    }

    .cta__paths {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }

    .cta__path {
      min-height: 100%;
      padding: clamp(28px, 4vw, 44px);
      border: 1px solid var(--line);
      border-radius: var(--r-card);
      background: var(--bg);
    }

    .cta__path-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(24px, 2.4vw, 34px);
      line-height: 1.1;
      letter-spacing: -0.01em;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 24px;
      text-wrap: balance;
    }

    .cta__form {
      display: grid;
      gap: 14px;
    }

    .cta__field {
      display: grid;
      gap: 8px;
    }

    .cta__field span {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--faint);
    }

    .cta__field input {
      width: 100%;
      height: 52px;
      border: 1px solid var(--line);
      border-radius: var(--r-btn);
      background: var(--paper);
      color: var(--ink);
      font: inherit;
      padding-inline: 16px;
      outline: none;
      transition: border-color 0.18s, background 0.18s;
    }

    .cta__field input:focus {
      border-color: var(--ink);
      background: #fff;
    }

    .cta__submit {
      margin-top: 8px;
      width: 100%;
      border: 2px solid var(--ink);
    }

    .cta__direct {
      display: flex;
      min-height: 100%;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 28px;
       background: var(--ink); 
    }

    .cta__owner-photo {
      width: 200px; /* Ajuste o tamanho conforme preferir */
      height: 200px;
      border-radius: 50%;
      object-fit: cover; /* Garante que a foto não distorça */
      margin-bottom: 10px;
      border: 2px solid var(--accent);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .cta__direct-text {
      font-family: 'Fraunces', serif;
      font-size: clamp(32px, 3.2vw, 58px);
      line-height: 1.03;
      letter-spacing: -0.01em;
      font-weight: 600;
      color: var(--paper);
      text-wrap: balance;
      text-align: center;
    }

    .cta__phone {
      display: inline-flex;
      width: fit-content;
      color: var(--accent);
      font-size: clamp(30px, 4vw, 54px);
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.02em;
      transition: opacity 0.18s;
      align-items: center;
      justify-content: center;
      padding: 20px;
      text-decoration: none;
    }

    .cta__phone:hover {
      opacity: 0.78;
    }

    .cta__intro,
    .cta__path {
      opacity: 0;
      transform: translateY(34px);
      transition:
        transform 0.86s cubic-bezier(.16,.84,.3,1),
        opacity 0.68s cubic-bezier(.16,.84,.3,1);
    }

    .cta.revealed .cta__intro,
    .cta.revealed .cta__path {
      opacity: 1;
      transform: translateY(0);
    }

    .cta.revealed .cta__path:nth-child(1) { transition-delay: 0.14s; }
    .cta.revealed .cta__path:nth-child(2) { transition-delay: 0.24s; }

    .cta__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cta__field textarea {
  /* herda o estilo dos inputs; ajusta se precisar */
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  resize: vertical;
}
.cta__field em {
  font-style: normal;
  color: var(--faint);
  font-weight: 400;
}

.cta__feedback {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(27,42,54,.06);
  border: 1px solid rgba(27,42,54,.12);
  color: var(--ink);
  font-weight: 600;
  border-radius: 4px;
}
.cta__feedback[hidden] {
  display: none;
}
.cta__feedback--error {
  background: rgba(194,145,47,.11);
  border-color: rgba(138,97,20,.32);
}
.cta__feedback a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}


@media (max-width: 600px) {
  .cta__row { grid-template-columns: 1fr; }  /* empilha no celular */
}

    @media (max-width: 900px) {
      .cta {
        padding-block: 64px;
      }

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

      .cta__direct {
        gap: 30px;
      }
    }

    /* ── FOOTER ──────────────────────────────── */
    .footer {
      background: var(--bg);
      border-top: 1px solid var(--line);
      padding-block: 56px 28px;
    }

    .footer__grid {
      display: grid;
      grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
      gap: clamp(32px, 5vw, 72px);
      align-items: start;
    }

    .footer__wordmark {
      font-family: 'Fraunces', serif;
      font-size: 28px;
      line-height: 1;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--ink);
    }

    .footer__positioning {
      max-width: 28em;
      margin-top: 40px;
      color: var(--mute);
    }

    .footer__heading {
      margin-bottom: 14px;
      color: var(--ink);
      font-weight: 700;
    }

    .footer__list {
      display: grid;
      gap: 10px;
    }

    .footer__list a,
    .footer__list span {
      color: var(--mute);
      font-size: 15px;
      transition: color 0.18s;
    }

    .footer__list a:hover {
      color: var(--ink);
    }

    .footer__bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 54px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      color: var(--faint);
    }

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

      .footer__brand {
        grid-column: 1 / -1;
        
      }

      .footer__bottom {
        flex-direction: column;
      }
    }

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

    @media (max-width: 480px) {
      .marquee {
        padding-top: 38px;
        padding-bottom: 48px;
      }

      .problem,
      .owner,
      .cta {
        padding-block: 56px;
      }

      .problem__h2,
      .proof2__h2,
      .owner__h2,
      .cta__h2 {
        font-size: clamp(30px, 9vw, 36px);
      }

      .problem__lead,
      .owner__lead,
      .cta__lead {
        font-size: 17px;
      }

      .owner__media {
        aspect-ratio: 1 / 1.18;
      }

      .owner__signature {
        margin-top: 32px;
        font-size: 13px;
        letter-spacing: 0.04em;
      }

      .cta__intro {
        margin-bottom: 38px;
      }

      .cta__path {
        padding: 24px 18px;
      }

      .cta__direct-text {
        font-size: clamp(30px, 9vw, 38px);
      }

      .cta__phone {
        font-size: clamp(34px, 10vw, 42px);
      }

      .footer {
        padding-block: 44px 24px;
      }

      .footer__list {
        gap: 2px;
      }

      .footer__list a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
      }
    }

    @media (max-width: 390px) {
      :root {
        --gutter: 18px;
      }

      .nav__wordmark {
        font-size: 18px;
      }

      .nav__right {
        gap: 7px;
      }

      .nav__menu {
        padding-inline: 12px;
      }

      .hero__content {
        padding-top: 34px;
      }

      .hero__h1 {
        font-size: clamp(38px, 11vw, 42px);
      }

      .hero__tags {
        gap: 9px 10px;
      }

      .cta__phone {
        letter-spacing: -0.03em;
      }
    }

    /* ── REDUCED MOTION ───────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      .w > span,
      .hero__eyebrow,
      .hero__sub,
      .hero__tags,
      .hero__ctas,
      .hero__trust,
      .hero__media,
      .problem__left,
      .problem__right,
      .problem__point,
      .proof2__eyebrow,
      .proof2__h2,
      .bento-card,
      .owner__media,
      .owner__copy,
      .cta__intro,
      .cta__path,
      .nav__links {
        transform: none !important;
        transition: opacity 0.3s ease !important;
        transition-delay: 0s !important;
      }
      .marquee__track { animation: none; }

      /* Disable lift/draw interactions under reduced-motion */
      .btn, .nav__pill {
        transition: opacity 0.3s ease !important;
      }
      .btn:hover, .nav__pill:hover {
        transform: none !important;
        box-shadow: none !important;
        opacity: 0.82 !important;
      }
      .nav__link::after { transition: none !important; }
      .bento-card {
        transition: opacity 0.3s ease !important;
      }
      .bento-card:hover {
        transform: none !important;
        box-shadow: none !important;
      }
    }

    /* ══════════════════════════════════════════
       MICRO-INTERACTIONS
       ══════════════════════════════════════════ */

    /* Nav links: draw-on underline ──────────── */
    .nav__link { position: relative; }
    .nav__link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 1px;
      background: var(--ink);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.28s cubic-bezier(.16,.84,.3,1);
    }
    .nav__link:hover::after { transform: scaleX(1); }

    /* Buttons: lift + shadow instead of opacity fade */
    .btn {
      transition:
        transform 0.2s cubic-bezier(.16,.84,.3,1),
        box-shadow 0.2s cubic-bezier(.16,.84,.3,1),
        opacity 0.18s;
    }
    .btn:hover {
      opacity: 1;
      transform: translateY(-2px);
    }
    .btn--primary:hover {
      box-shadow: 0 6px 22px rgba(27, 42, 54, 0.22);
    }
    .btn--outline:hover {
      box-shadow: 0 4px 14px rgba(27, 42, 54, 0.10);
    }

    /* Nav pill: lift */
    .nav__pill {
      transition:
        transform 0.2s cubic-bezier(.16,.84,.3,1),
        box-shadow 0.2s cubic-bezier(.16,.84,.3,1),
        opacity 0.18s;
    }
    .nav__pill:hover {
      opacity: 1;
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(27, 42, 54, 0.24);
    }

    /* Bento cards: hover lift ─────────────────
       Reveal uses 0.55s transform; hover overrides
       to 0.22s on pointer-enter, reverts on exit  */
    .bento-card {
      transition:
        transform 0.55s cubic-bezier(.16,.84,.3,1),
        opacity   0.68s cubic-bezier(.16,.84,.3,1),
        box-shadow 0.28s cubic-bezier(.16,.84,.3,1);
    }
    .bento-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 28px rgba(27, 42, 54, 0.09);
      transition:
        transform   0.22s cubic-bezier(.16,.84,.3,1),
        box-shadow  0.22s cubic-bezier(.16,.84,.3,1),
        opacity     0.68s cubic-bezier(.16,.84,.3,1);
    }
    .bento-feature:hover {
      box-shadow: 0 10px 32px rgba(0, 0, 0, 0.30);
    }

    /* Form inputs: custom glow focus ring ───── */
    .cta__field input:focus {
      box-shadow: 0 0 0 3px rgba(27, 42, 54, 0.10);
    }

    /* ══════════════════════════════════════════
       BACKGROUND WARMTH
       Very subtle accent radial washes — each sits
       at ~5% opacity, reads as depth not gradient.
       ══════════════════════════════════════════ */

    /* Problem: warm glow left, where the headline lives */
    .problem {
      background-image: radial-gradient(
        ellipse 80% 70% at 15% 45%,
        rgba(194, 145, 47, 0.055) 0%,
        transparent 65%
      );
    }

    /* Proof: warm leading edge from top-left */
    .proof2 {
      background-image: linear-gradient(
        148deg,
        rgba(194, 145, 47, 0.042) 0%,
        transparent 52%
      );
    }

    /* Switch band: warm side-glow over dark */
    .switch-band {
      background-image: radial-gradient(
        ellipse 60% 80% at 5% 50%,
        rgba(194, 145, 47, 0.08) 0%,
        transparent 60%
      );
    }

    /* Owner: warm left wash on dark ink bg */
    .owner {
      background-image: radial-gradient(
        ellipse 55% 75% at 0% 60%,
        rgba(194, 145, 47, 0.09) 0%,
        transparent 65%
      );
    }

    /* CTA: warm upward glow from headline area */
    .cta {
      background-image: radial-gradient(
        ellipse 65% 55% at 50% 5%,
        rgba(194, 145, 47, 0.065) 0%,
        transparent 70%
      );
    }

    /* ══════════════════════════════════════════
       POLISH 1 — OCHRE RULE DRAW-IN
       Only .switch-band__rule. No other elements.
       ══════════════════════════════════════════ */

    .switch-band__rule {
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.5s cubic-bezier(.2, .7, .2, 1);
    }
    .switch-band.revealed .switch-band__rule {
      transform: scaleX(1);
    }

    /* ══════════════════════════════════════════
       POLISH 2 — FILM GRAIN ON DARK SECTIONS
       ::after overlay, pointer-events:none, ~3.8%
       opacity. Tiling SVG fractalNoise.
       Switch-band already has position:relative in
       body <style>. Owner needs it added here.
       ══════════════════════════════════════════ */

    .owner { position: relative; }

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

    /* ══════════════════════════════════════════
       POLISH 3 — OCHRE SEAM AT CREAM → DARK JOINS
       1px hairline only. No blurry fades.
       ══════════════════════════════════════════ */

    .switch-band,
    .owner {
      border-top: 1px solid var(--accent);
    }

    /* ── REDUCED MOTION: polish additions ────── */
    @media (prefers-reduced-motion: reduce) {
      .switch-band__rule {
        transform: scaleX(1) !important;
        transition: none !important;
      }
    }

    /* ══════════════════════════════════════════
       HANDCRAFTED MICRO-INTERACTIONS
       Lower sections — restrained, editorial.
       No new motion beyond these seven gestures.
       ══════════════════════════════════════════ */

    /* 1. PROBLEM — section divider draws left→right
       Replaces static border-top with an animated
       pseudo-element that fires on scroll reveal.
       Ties visual language to the switch-band rule. */
    .problem__points {
      border-top: none;
      position: relative;
    }
    .problem__points::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 1px;
      background: var(--line);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.65s cubic-bezier(.2,.7,.2,1) 0.1s;
    }
    .problem.revealed .problem__points::before {
      transform: scaleX(1);
    }

    /* 2. PROBLEM POINT — number brightens, h3 underline draws
       On hover: accent-text (dark ochre) → accent (bright ochre).
       h3 gets the same draw-on underline as the nav links. */
    .problem__number {
      transition: color 0.22s ease;
    }
    .problem__point:hover .problem__number {
      color: var(--accent);
    }
    .problem__point h3 {
      position: relative;
    }
    .problem__point h3::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0;
      width: 100%; height: 1px;
      background: var(--ink);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.28s cubic-bezier(.16,.84,.3,1);
    }
    .problem__point:hover h3::after {
      transform: scaleX(1);
    }

    /* 3. OWNER PROOF STATS — individual stagger + hover
       Each stat counts itself in after the copy block
       lands, with its own delay. On hover the accent
       figure brightens one stop. */
    .owner__proof-item {
      opacity: 0;
      transform: translateY(8px);
      transition:
        transform 0.5s cubic-bezier(.16,.84,.3,1),
        opacity   0.4s ease;
    }
    .owner.revealed .owner__proof-item {
      opacity: 1;
      transform: translateY(0);
    }
    .owner.revealed .owner__proof-item:nth-child(1) { transition-delay: 0.30s; }
    .owner.revealed .owner__proof-item:nth-child(2) { transition-delay: 0.42s; }
    .owner.revealed .owner__proof-item:nth-child(3) { transition-delay: 0.54s; }

    .owner__proof-big {
      transition: color 0.22s ease;
    }
    .owner__proof-item:hover .owner__proof-big {
      color: #D4A84A;
    }

    /* 4. OWNER SIGNATURE — divider draws left→right
       The thin rule above "Rafael Santos — Owner"
       resolves after the copy settles, at 0.64s delay. */
    .owner__signature {
      border-top: none;
      position: relative;
    }
    .owner__signature::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 1px;
      background: rgba(247, 245, 239, 0.18);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.65s cubic-bezier(.2,.7,.2,1) 0.64s;
    }
    .owner.revealed .owner__signature::before {
      transform: scaleX(1);
    }

    /* 5. CTA PHONE — saturates up, not down
       Replaces the opacity fade. The number brightens
       to full --accent gold when you hover to call —
       warm, purposeful, no dimming. */
    .cta__phone {
      transition:
        color     0.22s ease,
        transform 0.22s cubic-bezier(.16,.84,.3,1);
    }
    .cta__phone:hover {
      opacity: 1;
      color: var(--accent);
      transform: scale(1.02);
    }

    /* 6. CTA OWNER PHOTO — warm gold halo on hover
       The accent border already signals importance;
       the halo reinforces it as a trust element. */
    .cta__owner-photo {
      transition:
        transform  0.28s cubic-bezier(.16,.84,.3,1),
        box-shadow 0.28s ease;
    }
    .cta__owner-photo:hover {
      transform: scale(1.04);
      box-shadow: 0 8px 28px rgba(194, 145, 47, 0.22);
    }

    /* 7. FOOTER LINKS — draw-in underline
       Consistent with .nav__link behavior —
       same easing, same 1px, same transform-origin. */
    .footer__list a {
      position: relative;
    }
    .footer__list a::after {
      content: '';
      position: absolute;
      bottom: -1px; left: 0;
      width: 100%; height: 1px;
      background: var(--ink);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.26s cubic-bezier(.16,.84,.3,1);
    }
    .footer__list a:hover { color: var(--ink); }
    .footer__list a:hover::after { transform: scaleX(1); }

    /* ── REDUCED MOTION: disable all new draw-ins ─ */
    @media (prefers-reduced-motion: reduce) {
      .problem__points::before,
      .owner__signature::before {
        transform: scaleX(1) !important;
        transition: none !important;
      }
      .problem__point h3::after,
      .footer__list a::after {
        display: none;
      }
      .owner__proof-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
      .cta__phone,
      .cta__owner-photo {
        transition: none !important;
      }
    }
