/* =========================================================
   Menos Automático — identidade editorial
   ========================================================= */
:root {
  --areia: #c9a87c;
  --terra: #8a6b4b;
  --brown: #4a3b2e;
  --off-white: #f5f0e8;
  --olive: #6b705c;
  --forest: var(--olive);
  --forest-deep: var(--brown);
  --forest-soft: var(--terra);
  --sand: var(--off-white);
  --sand-light: var(--off-white);
  --orange: var(--areia);
  --orange-dark: var(--terra);
  --graphite: var(--brown);
  --clay: rgb(138 107 75 / 28%);
  --stone: var(--terra);
  --white: var(--off-white);
  --muted: var(--olive);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --shell: 1240px;
  --header: 76px;
  --shadow: 0 24px 80px rgb(74 59 46 / 16%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); }
body { margin: 0; color: var(--graphite); background: var(--sand); font-family: var(--sans); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
body::before { position: fixed; z-index: 1200; top: 0; right: 0; left: 0; height: 3px; background: var(--orange); content: ""; pointer-events: none; transform: scaleX(var(--scroll-progress, 0)); transform-origin: left; will-change: transform; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
::selection { color: var(--white); background: var(--orange); }

.shell { width: min(calc(100% - 36px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 9999; top: 12px; left: 12px; padding: 10px 16px; color: var(--graphite); background: var(--white); font-size: .78rem; font-weight: 800; transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--areia); outline-offset: 4px; }
.section { padding: 84px 0; }
.kicker { margin-bottom: 18px; color: var(--orange-dark); font-size: .67rem; font-weight: 800; letter-spacing: .17em; line-height: 1.4; text-transform: uppercase; }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading h2, .story h2, .authority h2, .faq h2, .checklist h2, .final-cta h2 { margin-bottom: 24px; font-family: var(--serif); font-size: clamp(2.8rem, 12vw, 4.6rem); font-weight: 400; letter-spacing: -.045em; line-height: .98; }
.section-heading > p:last-child { max-width: 670px; color: var(--off-white); font-size: .98rem; }
.heading-dark > p:last-child { color: var(--muted); }

/* Botões */
.button { display: inline-flex; min-height: 50px; padding: 13px 19px; border: 1px solid transparent; border-radius: 10px; align-items: center; justify-content: center; gap: 9px; font-size: .69rem; font-weight: 800; letter-spacing: .07em; line-height: 1.2; text-align: center; text-transform: uppercase; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.button img { flex: none; }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-orange { color: var(--white); background: var(--orange); }
.button-orange:hover { background: var(--orange-dark); }
.button-orange img, .button-dark img { filter: invert(1); }
.button-light { color: var(--graphite); background: var(--sand); }
.button-light:hover { background: var(--white); }
.button-outline { color: var(--white); border-color: rgb(255 255 255 / 45%); background: rgb(23 60 49 / 12%); }
.button-outline:hover { border-color: var(--white); background: rgb(23 60 49 / 35%); }
.button-dark { color: var(--white); background: var(--graphite); }
.button-dark:hover { background: var(--forest); }
.button-small { min-height: 42px; padding: 10px 15px; font-size: .62rem; }

/* Cabeçalho */
.site-header { position: fixed; z-index: 1000; top: 0; right: 0; left: 0; height: var(--header); color: var(--white); background: rgb(74 59 46 / 90%); border-bottom: 1px solid rgb(255 255 255 / 12%); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: background .25s, box-shadow .25s; }
.site-header.scrolled { background: rgb(74 59 46 / 97%); box-shadow: 0 10px 35px rgb(74 59 46 / 22%); }
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; min-height: 44px; align-items: center; gap: 10px; }
.brand-logo { display: block; height: 34px; width: auto; transition: opacity .2s ease, transform .2s ease; }
.desktop-nav, .header-cta { display: none; }
.menu-toggle { display: grid; width: 46px; height: 46px; padding: 0; border: 1px solid rgb(255 255 255 / 35%); border-radius: 50%; color: var(--white); background: transparent; place-items: center; cursor: pointer; }
.menu-toggle img { width: 23px; filter: invert(1); }
.mobile-nav { position: fixed; z-index: 990; top: var(--header); right: 0; bottom: 0; left: 0; display: flex; padding: 32px 24px 50px; color: var(--graphite); background: var(--sand-light); flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity .22s, transform .22s, visibility .22s; overflow-y: auto; }
.mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav > a { display: flex; min-height: 58px; border-bottom: 1px solid var(--clay); align-items: center; font-family: var(--serif); font-size: 1.5rem; }
.mobile-nav .button { margin-top: 28px; }

/* Hero */
.hero { position: relative; display: flex; min-height: 900px; padding-top: var(--header); color: var(--white); background: var(--forest-deep); align-items: center; overflow: hidden; }
.hero-carousel, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-carousel { overflow: hidden; }
.hero-slides { position: absolute; inset: -7% 0; will-change: transform; }
.hero-slide { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility .9s; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.045); will-change: transform; }
.hero-slide.is-active img { animation: hero-drift 8s ease-out both; }
.hero-shade { background: linear-gradient(90deg, rgb(74 59 46 / 68%) 0%, rgb(74 59 46 / 44%) 58%, rgb(107 112 92 / 10%) 100%), linear-gradient(0deg, rgb(74 59 46 / 50%) 0%, transparent 46%); }
.hero-content { position: relative; z-index: 2; padding-top: 45px; padding-bottom: 185px; }
.hero .kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.hero h1 { max-width: 920px; margin-bottom: 28px; font-family: var(--serif); font-size: clamp(3.8rem, 17vw, 6.3rem); font-weight: 400; letter-spacing: -.055em; line-height: .87; }
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--areia); font-style: italic; }
.carousel-controls { position: absolute; z-index: 5; right: 0; bottom: 220px; left: 0; display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.carousel-arrows { display: flex; gap: 7px; }
.carousel-button { display: inline-flex; min-width: 44px; min-height: 44px; padding: 0; border: 1px solid rgb(255 255 255 / 38%); border-radius: 50%; color: var(--white); background: rgb(74 59 46 / 38%); align-items: center; justify-content: center; cursor: pointer; backdrop-filter: blur(7px); transition: border-color .2s, background .2s, transform .2s; }
.carousel-button img { filter: invert(1); }
.carousel-prev img { transform: rotate(180deg); }
.carousel-button:hover { border-color: var(--white); background: var(--terra); transform: scale(1.06); }
.carousel-dots { display: flex; align-items: center; gap: 5px; }
.carousel-dot { display: grid; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; place-items: center; cursor: pointer; }
.carousel-dot span { display: block; width: 24px; height: 2px; background: rgb(255 255 255 / 38%); transition: width .25s, background .25s; }
.carousel-dot.is-active span { width: 38px; background: var(--orange); }
.proof-strip { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; border-top: 1px solid rgb(255 255 255 / 17%); background: rgb(74 59 46 / 72%); backdrop-filter: blur(10px); }
.proof-grid { display: grid; grid-template-columns: 1fr; }
.proof-grid > div { display: flex; min-height: 68px; padding: 12px 0; border-bottom: 1px solid rgb(255 255 255 / 15%); align-items: baseline; justify-content: space-between; gap: 15px; }
.proof-grid > div:last-child { border-bottom: 0; }
.proof-grid strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; }
.proof-grid strong b { color: var(--orange); font-family: var(--sans); font-weight: 500; }
.proof-grid span { color: var(--off-white); font-size: .58rem; letter-spacing: .08em; text-align: right; text-transform: uppercase; }

/* História */
.story { background: var(--sand-light); }
.story-grid { display: grid; gap: 56px; }
.story-visual { position: relative; width: min(100%, 560px); margin-inline: auto; }
.story-image-parallax { width: 100%; aspect-ratio: 4 / 5; background: var(--forest); overflow: hidden; }
.story-image-parallax img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform .7s ease; }
.story-stamp { position: absolute; right: -5px; bottom: 48px; margin: 0; padding: 20px 23px; color: var(--white); background: var(--orange); box-shadow: 0 12px 35px rgb(74 59 46 / 18%); font-family: var(--serif); font-size: 1.18rem; font-style: italic; line-height: 1.15; transform: rotate(-3deg); }
.coordinate { position: absolute; top: 20px; left: -5px; padding: 8px 11px; color: var(--white); background: var(--graphite); font-size: .52rem; font-weight: 750; letter-spacing: .1em; }
.story-copy h2 { color: var(--forest); }
.story-copy > p:not(.kicker) { color: var(--muted); font-size: .95rem; }
.text-link { display: inline-flex; min-height: 44px; margin-top: 9px; padding: 7px 0; border-bottom: 1px solid var(--graphite); align-items: center; gap: 10px; font-size: .69rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.text-link img { transition: transform .2s; }
.text-link:hover img { transform: translateX(4px); }

/* Áreas escuras e pilares */
.dark-section { position: relative; color: var(--white); background: var(--forest); overflow: hidden; }
.grain::after { position: absolute; inset: 0; opacity: .11; background-image: radial-gradient(rgb(255 255 255 / 80%) .55px, transparent .7px); background-size: 5px 5px; content: ""; pointer-events: none; }
.grain > * { position: relative; z-index: 1; }
.dark-section .section-photo { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.dark-section .section-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.dark-section .section-photo::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgb(74 59 46 / 45%) 0%, rgb(74 59 46 / 90%) 100%); content: ""; }
.has-photo .shell { position: relative; z-index: 2; }
.pillars { border-top: 1px solid rgb(255 255 255 / 23%); }
.pillar { min-height: 270px; padding: 28px 4px; border-bottom: 1px solid rgb(255 255 255 / 23%); }
.pillar-top { display: flex; margin-bottom: 52px; color: var(--off-white); justify-content: space-between; align-items: center; }
.pillar-top img { filter: invert(95%) sepia(7%) saturate(407%) hue-rotate(89deg) brightness(105%); }
.pillar-top span { color: var(--areia); font-family: var(--serif); font-size: .76rem; }
.pillar h3 { margin-bottom: 12px; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.pillar p { max-width: 270px; margin-bottom: 0; color: var(--off-white); font-size: .84rem; }

/* Serviços */
.services { background: var(--sand); }
.service-grid { display: grid; gap: 18px; }
.service-card { position: relative; display: flex; min-height: 600px; padding: 31px 24px; border: 1px solid rgb(138 107 75 / 45%); background: var(--off-white); flex-direction: column; }
.service-card.featured { color: var(--white); border-color: var(--forest); background: var(--forest); box-shadow: var(--shadow); }
.featured-tag { position: absolute; top: -1px; right: 22px; padding: 7px 10px; color: var(--white); background: var(--orange); font-size: .52rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.service-number { margin-bottom: 35px; color: var(--stone); font-family: var(--serif); font-size: 1.2rem; }
.featured .service-number { color: var(--areia); }
.service-label { color: var(--orange-dark); font-size: .59rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.featured .service-label { color: var(--areia); }
.service-icon { margin: 20px 0; }
.featured .service-icon { filter: invert(1); }
.service-card h3 { margin-bottom: 19px; font-family: var(--serif); font-size: 2.25rem; font-weight: 400; letter-spacing: -.035em; line-height: .98; }
.service-description { color: var(--muted); font-size: .85rem; }
.featured .service-description { color: var(--off-white); }
.service-card ul { display: grid; margin: 16px 0 30px; padding: 18px 0 0; border-top: 1px solid rgb(138 107 75 / 38%); gap: 9px; list-style: none; }
.featured ul { border-color: rgb(255 255 255 / 22%); }
.service-card li { display: flex; align-items: center; gap: 9px; font-size: .76rem; }
.service-card li img { opacity: .75; }
.featured li img { filter: invert(1); }
.service-card .button { width: 100%; margin-top: auto; }

/* Checklist */
.checklist { padding: 78px 0; color: var(--white); background: var(--orange); }
.checklist-grid { display: grid; gap: 54px; }
.seal { display: inline-flex; min-height: 31px; margin-bottom: 23px; padding: 6px 11px; border: 1px solid rgb(255 255 255 / 60%); border-radius: 99px; align-items: center; font-size: .55rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.checklist h2 { color: var(--white); }
.checklist-copy > p { max-width: 600px; color: var(--brown); }
.checklist-copy .button { margin-top: 11px; }
.checklist-topics { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgb(255 255 255 / 42%); border-left: 1px solid rgb(255 255 255 / 42%); }
.checklist-topics div { display: flex; min-height: 125px; padding: 18px; border-right: 1px solid rgb(255 255 255 / 42%); border-bottom: 1px solid rgb(255 255 255 / 42%); flex-direction: column; justify-content: space-between; }
.checklist-topics span { opacity: .67; font-family: var(--serif); font-size: .7rem; }
.checklist-topics strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 400; }

/* Método */
.method { background: var(--sand-light); }
.method-grid { display: grid; gap: 40px; }
.method-visual { width: min(100%, 480px); margin-inline: auto; }
.method-image { width: 100%; aspect-ratio: 4 / 3; background: var(--forest); overflow: hidden; }
.method-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.method-list { margin: 0; padding: 0; border-top: 1px solid var(--clay); list-style: none; }
.method-list li { display: grid; grid-template-columns: 55px 1fr; min-height: 210px; padding: 30px 0; border-bottom: 1px solid var(--clay); gap: 16px; }
.method-list > li > span { color: var(--orange-dark); font-family: var(--serif); font-size: .85rem; }
.method-list h3 { margin-bottom: 12px; color: var(--forest); font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.12; }
.method-list p { max-width: 650px; margin-bottom: 0; color: var(--muted); font-size: .88rem; }

/* Autoridade */
.authority-grid { display: grid; gap: 70px; }
.authority-copy > p:not(.kicker) { color: var(--off-white); }
.authority blockquote { margin: 40px 0 0; padding: 22px 0 0; border-top: 1px solid rgb(255 255 255 / 24%); color: var(--sand); font-family: var(--serif); font-size: 1.35rem; font-style: italic; line-height: 1.35; }
.route-timeline { position: relative; display: grid; gap: 0; }
.route-track { position: absolute; top: 54px; bottom: 54px; left: 45px; width: 1px; background: repeating-linear-gradient(to bottom, var(--orange) 0 7px, transparent 7px 14px); }
.route-timeline article { position: relative; display: grid; grid-template-columns: 92px 1fr; min-height: 145px; align-items: center; }
.route-code { position: relative; z-index: 1; display: grid; width: 91px; height: 91px; border: 1px solid rgb(255 255 255 / 30%); border-radius: 50%; color: var(--sand); background: var(--forest); place-items: center; font-family: var(--serif); font-size: 1.15rem; }
.route-code::after { position: absolute; right: -5px; width: 9px; height: 9px; border: 3px solid var(--forest); border-radius: 50%; background: var(--orange); content: ""; }
.route-timeline article > div { padding-left: 30px; }
.route-timeline h3 { margin-bottom: 4px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.route-timeline p { margin: 0; color: var(--off-white); font-size: .72rem; }

/* Galeria */
.gallery { background: var(--sand-light); }
.gallery-grid { display: grid; gap: 12px; grid-template-columns: 1fr; }
.gallery-item { position: relative; margin: 0; background: var(--forest); overflow: hidden; }
.gallery-item img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .6s ease; }
.gallery-item figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 14px 16px; color: var(--white); background: linear-gradient(180deg, transparent 0%, rgb(74 59 46 / 85%) 100%); font-size: .68rem; font-weight: 700; letter-spacing: .03em; }

/* FAQ */
.faq { background: var(--sand); }
.faq-grid { display: grid; gap: 48px; }
.faq-heading > p:not(.kicker) { color: var(--muted); }
.faq-list { border-top: 1px solid var(--stone); }
.faq-list details { border-bottom: 1px solid var(--stone); }
.faq-list summary { position: relative; display: flex; min-height: 76px; padding: 21px 50px 21px 0; align-items: center; cursor: pointer; font-family: var(--serif); font-size: 1.12rem; font-weight: 400; line-height: 1.3; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 50%; right: 8px; width: 16px; height: 1px; background: var(--graphite); content: ""; transition: transform .2s; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 680px; margin: 0; padding: 0 42px 24px 0; color: var(--muted); font-size: .87rem; }

/* CTA final */
.final-cta { position: relative; padding: 100px 0; color: var(--white); background: var(--graphite); text-align: center; overflow: hidden; }
.brand-mark-large { width: 54px; height: 54px; margin: 0 auto 35px; color: var(--sand); }
.final-cta h2 { color: var(--white); }
.final-cta p { max-width: 610px; margin: 0 auto 29px; color: var(--off-white); }

/* Rodapé */
.footer { padding: 68px 0 24px; color: var(--off-white); background: var(--brown); }
.footer-grid { display: grid; gap: 42px; }
.footer .brand { color: var(--white); }
.footer .brand-logo { height: 46px; filter: brightness(0) invert(1); }
.footer-brand > p { max-width: 360px; margin: 22px 0 0; color: var(--off-white); font-size: .8rem; }
.footer h2 { margin-bottom: 15px; color: var(--areia); font-family: var(--sans); font-size: .59rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer nav a, .footer-contact > a { min-height: 30px; font-size: .76rem; }
.footer nav a:hover, .footer-contact > a:hover { color: var(--white); }
.footer nav > a, .footer-contact > a { display: inline-flex; align-items: center; gap: 8px; }
.footer nav > a img, .footer-contact > a img, .social-links img { filter: invert(1); opacity: .75; }
.social-links { display: flex; margin-top: 20px; gap: 9px; }
.social-links a { display: grid; width: 44px; height: 44px; border: 1px solid rgb(255 255 255 / 20%); border-radius: 50%; place-items: center; transition: border-color .2s, background .2s; }
.social-links a:hover { border-color: var(--orange); background: var(--orange); }
.footer-bottom { display: flex; margin-top: 54px; padding-top: 21px; border-top: 1px solid rgb(255 255 255 / 13%); flex-direction: column; gap: 7px; color: var(--areia); font-size: .6rem; }
.footer-bottom p { margin: 0; }

/* Entrada discreta, aplicada apenas quando JS está ativo */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.pillars .reveal:nth-child(2), .service-grid .reveal:nth-child(2), .checklist-topics.reveal { transition-delay: .08s; }
.pillars .reveal:nth-child(3), .service-grid .reveal:nth-child(3) { transition-delay: .16s; }
.pillars .reveal:nth-child(4) { transition-delay: .24s; }
.gallery-grid .reveal:nth-child(2), .gallery-grid .reveal:nth-child(5), .gallery-grid .reveal:nth-child(8) { transition-delay: .08s; }
.gallery-grid .reveal:nth-child(3), .gallery-grid .reveal:nth-child(6), .gallery-grid .reveal:nth-child(9) { transition-delay: .16s; }
[data-parallax] { --parallax-y: 0px; transform: translate3d(0, var(--parallax-y), 0); will-change: transform; }

@keyframes hero-drift {
  from { transform: scale(1.045) translate3d(0, 0, 0); }
  to { transform: scale(1.105) translate3d(-1%, -.6%, 0); }
}

@keyframes stamp-float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-1.5deg) translateY(-7px); }
}

@keyframes route-flow {
  to { background-position: 0 28px; }
}

/* Movimento de ponteiro: aplicado somente em dispositivos com hover real */
@media (hover: hover) and (pointer: fine) {
  .hero h1 .accent { display: inline-block; transition: letter-spacing .35s ease, transform .35s ease; }
  .hero h1:hover .accent { letter-spacing: -.025em; transform: translateX(10px); }
  .button img { transition: transform .22s ease; }
  .button:hover img { transform: translateX(4px); }
  .story-stamp { animation: stamp-float 5s ease-in-out infinite; }
  .story-visual:hover .story-image-parallax img { transform: scale(1.12); }
  .story-copy h2 { transition: color .3s ease, transform .3s ease; }
  .story-copy h2:hover { color: var(--orange-dark); transform: translateX(8px); }
  .pillar { transition: background .3s ease, transform .3s ease; }
  .pillar:hover { background: rgb(255 255 255 / 5%); transform: translateY(-8px); }
  .pillar h3, .pillar-top img { transition: color .25s, transform .35s ease; }
  .pillar:hover h3 { color: var(--areia); transform: translateX(7px); }
  .pillar:hover .pillar-top img { transform: rotate(8deg) scale(1.12); }
  .service-card { transition: transform .35s ease, box-shadow .35s ease, background .35s ease; }
  .service-card:not(.featured):hover { z-index: 3; background: var(--sand-light); box-shadow: var(--shadow); transform: translateY(-12px); }
  .service-card.featured:hover { transform: translateY(-10px); }
  .service-card h3, .service-icon { transition: transform .3s ease; }
  .service-card:hover h3 { transform: translateX(7px); }
  .service-card:hover .service-icon { transform: rotate(-9deg) scale(1.12); }
  .checklist-topics div { transition: background .25s ease; }
  .checklist-topics strong { transition: transform .25s ease; }
  .checklist-topics div:hover { background: rgb(255 255 255 / 10%); }
  .checklist-topics div:hover strong { transform: translateX(8px); }
  .method-list li { transition: padding-left .3s ease, background .3s ease; }
  .method-list li:hover { padding-left: 18px; background: rgb(221 208 186 / 24%); }
  .method-list h3 { transition: color .25s; }
  .method-list li:hover h3 { color: var(--orange-dark); }
  .method-visual:hover .method-image img { transform: scale(1.06); }
  .gallery-item:hover img { transform: scale(1.08); }
  .route-track { animation: route-flow 2.8s linear infinite; }
  .route-code, .route-timeline article > div { transition: transform .3s ease, color .3s ease, background .3s ease; }
  .route-timeline article:hover .route-code { color: var(--white); border-color: var(--orange); background: var(--orange); transform: scale(1.08) rotate(-3deg); }
  .route-timeline article:hover > div { transform: translateX(9px); }
  .faq-list summary { transition: color .25s ease, padding-left .25s ease; }
  .faq-list summary:hover { padding-left: 8px; color: var(--orange-dark); }
  .social-links a img { transition: transform .25s ease; }
  .social-links a:hover img { transform: rotate(8deg) scale(1.08); }
}

/* Tablet */
@media (min-width: 640px) {
  .shell { width: min(calc(100% - 64px), var(--shell)); }
  .section { padding: 105px 0; }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid > div { min-height: 100px; padding: 20px 22px; border-right: 1px solid rgb(255 255 255 / 15%); border-bottom: 0; flex-direction: column; justify-content: center; gap: 2px; }
  .proof-grid > div:first-child { padding-left: 0; }.proof-grid > div:last-child { border-right: 0; }
  .proof-grid span { text-align: left; }
  .hero { min-height: 850px; }.hero-content { padding-bottom: 150px; }
  .carousel-controls { bottom: 120px; }
  .pillars { display: grid; grid-template-columns: 1fr 1fr; }
  .pillar { padding: 30px 26px; border-right: 1px solid rgb(255 255 255 / 23%); }
  .pillar:nth-child(2n) { border-right: 0; }
  .service-card { padding: 38px; }
  .checklist-topics div { min-height: 155px; padding: 23px; }
  .method-list li { grid-template-columns: 110px 1fr; padding: 38px 0; }
  .method-list h3 { font-size: 2.1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr .8fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (max-width: 420px) {
  .carousel-controls { gap: 6px; }
}

/* Desktop */
@media (min-width: 960px) {
  :root { --header: 84px; }
  .section { padding: 132px 0; }
  .desktop-nav { display: flex; margin-left: auto; align-items: center; gap: clamp(20px, 2.5vw, 38px); }
  .desktop-nav a { position: relative; display: inline-flex; min-height: 44px; align-items: center; font-size: .68rem; font-weight: 700; }
  .desktop-nav a::after { position: absolute; right: 0; bottom: 7px; left: 0; height: 1px; background: var(--orange); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .2s; }
  .desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
  .header-cta { display: inline-flex; }
  .menu-toggle, .mobile-nav { display: none; }
  .hero { min-height: 830px; }
  .hero-content { padding-top: 40px; padding-bottom: 130px; }
  .hero h1 { font-size: clamp(5.6rem, 8.4vw, 8.6rem); }
  .carousel-controls { bottom: 122px; }
  .story-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1fr); align-items: center; gap: clamp(80px, 10vw, 145px); }
  .story-visual { width: 100%; }
  .story-copy h2 { font-size: clamp(3.6rem, 5.5vw, 5.7rem); }
  .section-heading { margin-bottom: 68px; }
  .section-heading h2, .authority h2, .faq h2, .checklist h2, .final-cta h2 { font-size: clamp(4rem, 6vw, 6.3rem); }
  .pillars { grid-template-columns: repeat(4, 1fr); }
  .pillar { min-height: 340px; padding: 34px 27px; border-bottom: 0; }
  .pillar:nth-child(2) { border-right: 1px solid rgb(255 255 255 / 23%); }
  .pillar-top { margin-bottom: 90px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); gap: 0; align-items: stretch; }
  .service-card { min-height: 660px; padding: 38px 31px; border-right: 0; }
  .service-card.featured { min-height: 700px; margin-top: -20px; margin-bottom: -20px; z-index: 2; }
  .service-card h3 { font-size: 2.65rem; }
  .checklist { padding: 105px 0; }
  .checklist-grid { grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(70px, 9vw, 130px); }
  .checklist-topics div { min-height: 175px; }
  .method-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1fr); align-items: start; gap: clamp(60px, 8vw, 110px); }
  .method-visual { position: sticky; top: 120px; width: 100%; }
  .method-image { aspect-ratio: 3 / 4; }
  .method-list li { grid-template-columns: 160px 1fr; min-height: 190px; padding: 42px 0; align-items: center; }
  .method-list > li > span { font-size: 1rem; }
  .method-list h3 { font-size: 2.5rem; }
  .method-list p { font-size: .94rem; }
  .authority-grid { grid-template-columns: 1fr .8fr; align-items: center; gap: clamp(80px, 11vw, 150px); }
  .authority-copy > p:not(.kicker) { max-width: 620px; }
  .authority blockquote { font-size: 1.6rem; }
  .route-timeline article { min-height: 170px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .faq-grid { grid-template-columns: .72fr 1fr; align-items: start; gap: clamp(80px, 11vw, 150px); }
  .faq-heading { position: sticky; top: 120px; }
  .final-cta { padding: 140px 0; }
  .footer { padding-top: 90px; }
}

/* Telas grandes */
@media (min-width: 1280px) {
  .hero-shade { background: linear-gradient(90deg, rgb(74 59 46 / 56%) 0%, rgb(74 59 46 / 34%) 54%, rgb(107 112 92 / 6%) 100%), linear-gradient(0deg, rgb(74 59 46 / 40%) 0%, transparent 46%); }
  .service-card { padding: 45px 40px; }
}

/* =========================================================
   Contrato de marca: paleta fixa e escala tipográfica
   ========================================================= */
body { color: var(--brown); background: var(--off-white); font-weight: 400; line-height: 1.65; }
h1, h2, h3 { font-family: var(--serif); color: var(--terra); font-weight: 600; letter-spacing: -.02em; }
.hero h1 { margin-bottom: 24px; color: var(--off-white); font-size: 32px; font-weight: 700; line-height: 1.08; }
.hero h1 .accent { color: var(--areia); }
.section-heading h2, .story h2, .authority h2, .faq h2, .checklist h2, .final-cta h2 { margin-bottom: 20px; font-size: 24px; font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
.pillar h3, .service-card h3, .method-list h3, .route-timeline h3 { font-size: 18px; font-weight: 600; letter-spacing: -.01em; line-height: 1.3; }

.kicker, .kicker-light { color: var(--terra); font-size: 14px; font-weight: 600; letter-spacing: .12em; }
.dark-section .kicker, .hero .kicker { color: var(--areia); }
.section-heading > p:last-child,
.story-copy > p:not(.kicker),
.pillar p,
.service-description,
.service-card li,
.checklist-copy > p,
.method-list p,
.authority-copy > p:not(.kicker),
.route-timeline p,
.faq-heading > p:not(.kicker),
.faq-list details p,
.final-cta p { font-size: 16px; }

.button, .button-small { min-height: 50px; padding: 13px 20px; font-size: 16px; font-weight: 600; letter-spacing: 0; text-transform: none; }
.button-orange { color: var(--brown); background: var(--areia); }
.button-orange:hover { color: var(--off-white); background: var(--terra); }
.button-orange img { filter: brightness(0) saturate(100%) invert(22%) sepia(15%) saturate(1215%) hue-rotate(346deg) brightness(95%) contrast(91%); }
.button-orange:hover img { filter: invert(1); }
.button-light { color: var(--brown); background: var(--off-white); }
.button-outline { color: var(--off-white); border-color: rgb(245 240 232 / 56%); background: rgb(74 59 46 / 20%); }
.button-outline:hover { border-color: var(--off-white); background: rgb(74 59 46 / 48%); }
.button-dark { color: var(--off-white); background: var(--brown); }
.button-dark:hover { background: var(--terra); }
.text-link { border-color: var(--terra); color: var(--terra); font-size: 16px; font-weight: 600; letter-spacing: 0; text-transform: none; }

.site-header { background: rgb(74 59 46 / 90%); }
.site-header.scrolled { background: rgb(74 59 46 / 97%); box-shadow: 0 10px 35px rgb(74 59 46 / 22%); }
.mobile-nav { color: var(--brown); background: var(--off-white); }
.mobile-nav > a { border-color: var(--clay); color: var(--terra); font-weight: 600; }
.hero { background: var(--brown); }
.hero-shade { background: linear-gradient(90deg, rgb(74 59 46 / 68%) 0%, rgb(74 59 46 / 44%) 58%, rgb(107 112 92 / 10%) 100%), linear-gradient(0deg, rgb(74 59 46 / 50%) 0%, transparent 46%); }
.carousel-button { background: rgb(74 59 46 / 38%); }
.carousel-button:hover { background: var(--terra); }
.carousel-dot.is-active span { background: var(--areia); }
.proof-strip { background: rgb(74 59 46 / 72%); }
.proof-grid strong { color: var(--off-white); font-weight: 600; }
.proof-grid strong b { color: var(--areia); }
.proof-grid span { color: var(--off-white); font-size: 14px; letter-spacing: .04em; }

.story, .services, .method, .faq, .gallery { background: var(--off-white); }
.gallery-item figcaption { font-size: 14px; font-weight: 600; }
.story-copy h2, .heading-dark h2, .method-list h3, .faq h2 { color: var(--terra); }
.story-stamp { color: var(--brown); background: var(--areia); box-shadow: 0 12px 35px rgb(74 59 46 / 18%); font-weight: 600; }
.coordinate { color: var(--off-white); background: var(--brown); font-size: 14px; font-weight: 600; }
.dark-section { color: var(--off-white); background: var(--olive); }
.dark-section h2, .dark-section h3 { color: var(--off-white); }
.pillar-top span { color: var(--areia); font-size: 14px; }
.pillar p, .authority-copy > p:not(.kicker), .route-timeline p { color: var(--off-white); opacity: .86; }
.service-card { border-color: rgb(138 107 75 / 45%); background: var(--off-white); }
.service-card.featured { color: var(--off-white); border-color: var(--olive); background: var(--olive); }
.service-card h3 { color: var(--terra); }
.service-card.featured h3 { color: var(--off-white); }
.featured-tag { color: var(--brown); background: var(--areia); font-size: 14px; font-weight: 600; letter-spacing: .06em; }
.service-number { color: var(--terra); font-weight: 600; }
.featured .service-number, .featured .service-label { color: var(--areia); }
.service-label { color: var(--terra); font-size: 14px; font-weight: 600; letter-spacing: .08em; }
.service-card ul { border-color: rgb(138 107 75 / 38%); }
.service-card:not(.featured) .service-icon,
.service-card:not(.featured) li img { filter: brightness(0) saturate(100%) invert(43%) sepia(20%) saturate(1051%) hue-rotate(349deg) brightness(90%) contrast(86%); }

.checklist { color: var(--brown); background: var(--areia); }
.checklist h2 { color: var(--brown); }
.checklist-copy > p { color: var(--brown); }
.seal { border-color: var(--olive); color: var(--off-white); background: var(--olive); font-size: 14px; font-weight: 600; letter-spacing: .08em; }
.checklist-topics { border-color: rgb(74 59 46 / 45%); }
.checklist-topics div { border-color: rgb(74 59 46 / 45%); }
.checklist-topics span { color: var(--brown); font-size: 14px; }
.checklist-topics strong { color: var(--brown); font-size: 18px; font-weight: 600; }
.method-list > li > span { color: var(--terra); font-size: 14px; font-weight: 600; }
.authority blockquote { color: var(--off-white); font-size: 22px; font-weight: 600; }
.route-code { border-color: rgb(245 240 232 / 38%); color: var(--off-white); background: var(--olive); font-weight: 600; }
.route-code::after { border-color: var(--olive); background: var(--areia); }
.route-track { background: repeating-linear-gradient(to bottom, var(--areia) 0 7px, transparent 7px 14px); }
.faq-list summary { color: var(--terra); font-size: 18px; font-weight: 600; }
.faq-list summary span::before, .faq-list summary span::after { background: var(--terra); }
.final-cta, .footer { color: var(--off-white); background: var(--brown); }
.final-cta h2 { color: var(--off-white); }
.final-cta p, .footer, .footer-brand > p, .footer h2, .footer nav a, .footer-contact > a, .footer-bottom { font-size: 14px; }
.final-cta p, .footer-brand > p { color: var(--off-white); opacity: .82; }
.footer h2 { color: var(--areia); font-weight: 600; }
.footer-bottom { color: var(--areia); }
.social-links a:hover { border-color: var(--areia); background: var(--terra); }

@media (min-width: 960px) {
  .desktop-nav a { font-size: 16px; font-weight: 500; }
  .hero h1 { font-size: 48px; }
  .section-heading h2, .story h2, .authority h2, .faq h2, .checklist h2, .final-cta h2 { font-size: 32px; }
  .pillar h3, .service-card h3, .method-list h3, .route-timeline h3, .faq-list summary { font-size: 22px; }
  .checklist-topics strong { font-size: 22px; }
}

/* Preferências de movimento e impressão */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::before { display: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-slide.is-active img, .story-stamp, .route-track { animation: none !important; }
  [data-parallax] { transform: none !important; }
}

@media print {
  .site-header, .checklist .button, .final-cta .button, .footer { display: none; }
  body { color: #000; background: #fff; }
  .hero, .dark-section, .checklist, .final-cta { color: #000; background: #fff; }
  .hero { min-height: auto; padding: 40px 0; }.hero-carousel, .hero-shade, .proof-strip, .carousel-controls { display: none; }.hero-content { padding: 0; }
}

/* =========================================================
   Landing page 2026 — estrutura editorial atualizada
   ========================================================= */
.hero-static {
  min-height: min(920px, 100svh);
  padding-top: var(--header);
  align-items: flex-end;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 53% center; }
.hero-static .hero-shade { background: linear-gradient(180deg, rgb(30 25 20 / 12%) 20%, rgb(30 25 20 / 68%) 100%); }
.hero-static .hero-content { width: 100%; padding-top: 140px; padding-bottom: clamp(90px, 13vh, 145px); }
.hero .hero-brand {
  max-width: 1100px;
  margin: 0;
  color: var(--off-white);
  font-family: var(--sans);
  font-size: clamp(3.9rem, 12vw, 9.6rem);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: .78;
  text-transform: uppercase;
}
.hero .hero-brand span { color: var(--areia); font-weight: 500; }
.hero-caption { position: absolute; z-index: 3; right: 18px; bottom: 20px; margin: 0; color: rgb(245 240 232 / 82%); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.story-reworked { background: var(--off-white); }
.story-intro { max-width: 1080px; margin: 0 auto 58px; text-align: center; }
.story-intro h2, .planning > .shell > h2, .offer-copy h2, .service-summary h2, .recommendations .section-heading h2 {
  margin-bottom: 28px;
  color: var(--terra);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.4vw, 2.7rem);
  font-weight: 600;
  line-height: 1.1;
}
.story-columns { display: grid; gap: 0 48px; margin: 0 auto 30px; text-align: left; }
.story-columns p { margin-bottom: 18px; color: var(--brown); font-size: 16px; }
.story-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.story-photo { position: relative; margin: 0; aspect-ratio: 4 / 3; background: var(--terra); overflow: hidden; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.story-photo figcaption { position: absolute; right: 10px; bottom: 9px; margin: 0; padding: 5px 9px; color: var(--off-white); background: rgb(74 59 46 / 72%); font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; backdrop-filter: blur(5px); }

.planning > .shell > h2 { max-width: 760px; margin-bottom: 54px; color: var(--off-white); }
.planning-manifesto { max-width: 760px; margin-bottom: 16px; color: var(--areia); font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.planning-grid { display: grid; border-top: 1px solid rgb(245 240 232 / 28%); }
.planning-card { min-height: 250px; padding: 28px 4px; border-bottom: 1px solid rgb(245 240 232 / 28%); }
.planning-card-top { display: flex; margin-bottom: 42px; align-items: center; justify-content: space-between; }
.planning-card-top img { filter: invert(1); opacity: .88; }
.planning-card-top span { color: var(--areia); font-family: var(--serif); font-size: 14px; }
.planning-card h3 { margin-bottom: 12px; color: var(--off-white); font-size: 22px; text-transform: uppercase; }
.planning-card p { max-width: 310px; margin: 0; color: rgb(245 240 232 / 88%); font-size: 15px; }

.offer-section { background: var(--off-white); }
.offer-grid, .service-layout { display: grid; gap: 52px; }
.offer-copy > p:not(.kicker), .service-summary > p:not(.kicker):not(.service-note) { color: var(--brown); font-size: 16px; }
.guide-card { position: relative; display: block; min-height: 460px; color: var(--off-white); background: var(--brown); overflow: hidden; }
.guide-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.guide-card-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgb(35 28 22 / 5%) 15%, rgb(35 28 22 / 88%) 100%); }
.guide-card-content { position: absolute; right: 0; bottom: 0; left: 0; display: flex; padding: 34px; flex-direction: column; align-items: flex-start; }
.guide-card-content small { margin-bottom: 10px; color: var(--areia); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.guide-card-content strong { max-width: 560px; margin-bottom: 18px; color: var(--off-white); font-family: var(--serif); font-size: clamp(1.8rem, 5vw, 3rem); line-height: 1.08; }
.guide-card-content > span { display: inline-flex; padding-bottom: 6px; border-bottom: 1px solid rgb(245 240 232 / 55%); align-items: center; gap: 9px; font-size: 14px; font-weight: 600; }
.guide-card-content img { filter: invert(1); }

.consult-section { color: var(--off-white); background: var(--olive); }
.consult-section .kicker { color: var(--areia); }
.consult-section .service-summary h2, .consult-section .service-process h3 { color: var(--off-white); }
.consult-section .service-summary > p:not(.kicker):not(.service-note) { color: rgb(245 240 232 / 88%); }
.service-process { padding: 32px 24px; border: 1px solid rgb(138 107 75 / 45%); background: rgb(245 240 232 / 42%); }
.consult-section .service-process { border-color: rgb(245 240 232 / 26%); background: rgb(74 59 46 / 17%); }
.service-process h3 { margin-bottom: 20px; color: var(--terra); font-size: 26px; }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; min-height: 105px; padding: 22px 0; border-top: 1px solid rgb(138 107 75 / 37%); grid-template-columns: 48px 1fr; gap: 12px; }
.consult-section .steps-list li { border-color: rgb(245 240 232 / 22%); }
.steps-list li > span { color: var(--terra); font-size: 14px; font-weight: 600; }
.consult-section .steps-list li > span { color: var(--areia); }
.steps-list p { margin: 0; font-size: 15px; }
.investment { display: flex; width: min(100%, 360px); margin: 32px 0 20px; padding: 17px 0; border-top: 1px solid rgb(245 240 232 / 35%); border-bottom: 1px solid rgb(245 240 232 / 35%); align-items: center; justify-content: space-between; gap: 20px; }
.investment span { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.investment strong { color: var(--areia); font-family: var(--serif); font-size: 26px; }
.route-section { background: linear-gradient(rgb(201 168 124 / 16%), rgb(201 168 124 / 16%)), var(--off-white); }
.service-note, .deadline-note { font-size: 13px; font-style: italic; }
.service-note { margin: 28px 0 22px; color: var(--olive); }
.deadline-note { margin: 22px 0 0; color: var(--terra); font-weight: 600; }

.recommendations { background: var(--off-white); }
.recommendations .section-heading { max-width: 850px; }
.recommendation-columns { display: grid; gap: 32px; }
.recommendation-group { padding: 24px 18px; border: 1px solid rgb(138 107 75 / 42%); }
.recommendation-group > h3 { margin-bottom: 24px; color: var(--terra); font-size: 24px; text-transform: uppercase; }
.recommendation-list { display: flex; flex-direction: column; }
.recommendation-item { display: grid; min-height: 105px; padding: 20px 4px; border-top: 1px solid rgb(138 107 75 / 32%); grid-template-columns: 30px minmax(0, 1fr) 18px; align-items: center; gap: 16px; transition: background .2s, padding .2s; }
.recommendation-item > img:first-child { filter: brightness(0) saturate(100%) invert(43%) sepia(20%) saturate(1051%) hue-rotate(349deg) brightness(90%) contrast(86%); }
.recommendation-item > span { display: flex; flex-direction: column; gap: 2px; }
.recommendation-item strong { color: var(--brown); font-size: 16px; }
.recommendation-item small { color: var(--olive); font-size: 13px; line-height: 1.45; }
.recommendation-item .item-arrow { opacity: .6; }
.affiliate-note { max-width: 850px; margin: 32px auto 0; color: var(--olive); font-size: 12px; text-align: center; }

.footer-grid-reworked { align-items: start; }
.footer-grid-reworked .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid-reworked .footer-contact h2 { margin-bottom: 5px; }
.footer-grid-reworked .footer-contact > a { min-height: 36px; align-items: flex-start; }

@media (hover: hover) and (pointer: fine) {
  .story-photo:hover img, .guide-card:hover > img { transform: scale(1.05); }
  .recommendation-item:hover { padding-right: 12px; padding-left: 12px; background: rgb(201 168 124 / 13%); }
  .recommendation-item .item-arrow { transition: transform .2s; }
  .recommendation-item:hover .item-arrow { transform: translateX(4px); }
}

@media (min-width: 640px) {
  .story-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .planning-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .planning-card { padding: 30px 26px; border-right: 1px solid rgb(245 240 232 / 28%); }
  .planning-card:nth-child(2n) { border-right: 0; }
  .recommendation-group { padding: 32px; }
}

@media (min-width: 960px) {
  .site-header .desktop-nav { gap: clamp(14px, 1.55vw, 25px); }
  .site-header .desktop-nav a { font-size: 14px; white-space: nowrap; }
  .hero-static { min-height: min(940px, 100svh); }
  .hero .hero-brand { font-size: clamp(6.4rem, 11.4vw, 9.6rem); }
  .hero-caption { right: 32px; bottom: 26px; }
  .story-intro { margin-bottom: 72px; }
  .story-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .planning > .shell > h2, .offer-copy h2, .service-summary h2, .recommendations .section-heading h2 { font-size: clamp(2.4rem, 3.4vw, 2.9rem); }
  .planning-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .planning-card { min-height: 290px; padding: 32px 30px; }
  .planning-card:nth-child(2n) { border-right: 1px solid rgb(245 240 232 / 28%); }
  .planning-card:nth-child(3n) { border-right: 0; }
  .planning-card-top { margin-bottom: 58px; }
  .offer-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: center; gap: clamp(60px, 8vw, 120px); }
  .guide-card { min-height: 620px; }
  .service-layout { grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr); align-items: center; gap: clamp(70px, 9vw, 130px); }
  .service-layout-reverse { grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); }
  .service-layout-reverse .service-summary { order: 2; }
  .service-layout-reverse .service-process { order: 1; }
  .service-process { padding: 46px; }
  .recommendation-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: 24px; }
  .recommendation-group { padding: 38px; }
  .footer-grid-reworked { grid-template-columns: .7fr 1.1fr 1.2fr; }
}

@media print {
  .hero-media, .hero-shade, .hero-caption { display: none; }
  .hero-static { min-height: auto; padding: 60px 0; }
  .hero .hero-brand { color: #000; }
}

/* Ajustes de ritmo: história, planejamento e serviços compactos */
.story-feature { display: grid; gap: 44px; margin-bottom: 64px; }
.story-feature-visual { position: relative; width: min(100%, 540px); margin-inline: auto; }
.story-feature-image { aspect-ratio: 4 / 5; background: var(--olive); overflow: hidden; }
.story-feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .55s ease; }
.story-feature-copy h2 { margin-bottom: 24px; color: var(--terra); font-size: clamp(1.85rem, 4vw, 2.6rem); line-height: 1.1; }
.story-feature-copy > p:not(.kicker) { margin-bottom: 15px; color: var(--brown); font-size: 16px; }
.story-feature-copy .button { margin-top: 8px; }

.planning.section { padding-top: 80px; padding-bottom: 80px; }
.planning-kicker { max-width: 760px; margin-bottom: 12px; color: var(--areia); font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.planning > .shell > h2 { max-width: 900px; margin-bottom: 38px; font-size: clamp(1.9rem, 4.2vw, 2.75rem); }
.planning-card { min-height: 190px; padding-top: 22px; padding-bottom: 22px; }
.planning-card-top { margin-bottom: 22px; }
.planning-card-top img { width: 23px; height: 23px; }
.planning-card h3 { margin-bottom: 7px; font-size: 18px; }
.planning-card p { font-size: 14px; line-height: 1.5; }

.offer-section.section { padding-top: 82px; padding-bottom: 82px; }
.offer-copy h2, .service-summary h2 { margin-bottom: 20px; font-size: clamp(1.8rem, 3.6vw, 2.5rem); line-height: 1.12; }
.offer-grid { gap: 42px; }
.guide-card { min-height: 390px; }
.guide-card-content { padding: 26px; }
.guide-card-content strong { margin-bottom: 16px; font-size: clamp(1.65rem, 4vw, 2.5rem); }
.guide-card-content .button-light img { filter: none; }

.service-compact { display: grid; gap: 30px; }
.service-intro-grid { display: grid; gap: 32px; align-items: center; }
.service-photo { position: relative; min-height: 260px; margin: 0; aspect-ratio: 4 / 3; background: var(--brown); overflow: hidden; }
.service-photo::after { position: absolute; inset: 0; border: 1px solid rgb(245 240 232 / 18%); content: ""; pointer-events: none; }
.service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.route-section .service-photo img { object-position: center 58%; }
.consult-section .service-photo { aspect-ratio: 4 / 5; }
.service-process { padding: 24px 22px; }
.service-process h3 { margin-bottom: 12px; font-size: 22px; }
.steps-list li { min-height: 0; padding: 16px 0; }
.steps-list p { font-size: 14px; line-height: 1.5; }
.investment { margin: 24px 0 18px; padding: 13px 0; }
.investment strong { font-size: 23px; }
.service-note { margin: 20px 0 17px; }
.deadline-note { margin-top: 16px; }

@media (hover: hover) and (pointer: fine) {
  .story-feature-visual:hover .story-feature-image img, .service-photo:hover img { transform: scale(1.04); }
}

@media (min-width: 640px) {
  .planning-card { min-height: 180px; padding: 22px 24px; }
}

@media (min-width: 960px) {
  .story-feature { grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: center; gap: clamp(58px, 7vw, 105px); margin-bottom: 82px; }
  .story-feature-visual { width: 100%; }
  .story-feature-copy h2 { font-size: clamp(2.4rem, 3.2vw, 2.8rem); }
  .story-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
  .story.section { padding-bottom: 70px; }
  .planning.section { padding-top: 88px; padding-bottom: 88px; }
  .planning > .shell > h2 { margin-bottom: 40px; font-size: clamp(2.4rem, 3.4vw, 2.8rem); }
  .planning-card { min-height: 180px; padding: 22px 24px; }
  .planning-card-top { margin-bottom: 20px; }
  .offer-section.section { padding-top: 88px; padding-bottom: 88px; }
  .offer-grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(48px, 6vw, 86px); }
  .guide-card { min-height: 430px; }
  .service-intro-grid { grid-template-columns: minmax(0, 1.14fr) minmax(320px, .86fr); gap: clamp(46px, 6vw, 88px); }
  .route-intro-grid { grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); }
  .service-photo { min-height: 310px; max-height: 390px; aspect-ratio: 4 / 3; }
  .consult-section .service-photo { max-height: 560px; }
  .service-process { padding: 24px 28px 28px; }
  .service-process h3 { margin-bottom: 18px; }
  .steps-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .steps-list.compact-steps { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .steps-list li { display: block; padding: 4px 18px 2px; border-top: 0; border-left: 1px solid rgb(138 107 75 / 37%); }
  .steps-list li:first-child { padding-left: 0; border-left: 0; }
  .consult-section .steps-list li { border-top: 0; border-left-color: rgb(245 240 232 / 22%); }
  .steps-list li > span { display: block; margin-bottom: 10px; }
  .steps-list p { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .story-feature-image img, .service-photo img { transition: none; }
}

/* Cabeçalho flutuante */
.site-header {
  top: 12px;
  right: 16px;
  left: 16px;
  width: auto;
  max-width: var(--shell);
  height: 66px;
  margin-inline: auto;
  color: var(--brown);
  border: 1px solid rgb(74 59 46 / 12%);
  border-radius: 999px;
  background: rgb(245 240 232 / 94%);
  box-shadow: 0 8px 28px rgb(74 59 46 / 10%);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: height .22s, top .22s, background .22s, box-shadow .22s;
}
.site-header.scrolled { top: 8px; height: 60px; color: var(--brown); background: rgb(245 240 232 / 98%); box-shadow: 0 10px 32px rgb(74 59 46 / 16%); }
.site-header .header-inner { width: 100%; padding-inline: 12px; }
.site-header .brand { color: var(--brown); }
.site-header .menu-toggle { width: 44px; height: 44px; color: var(--brown); border-color: rgb(74 59 46 / 28%); }
.site-header .menu-toggle img { filter: none; }
.site-header .header-cta { display: none; white-space: nowrap; }
.mobile-nav { top: 88px; right: 16px; bottom: auto; left: auto; width: min(calc(100vw - 32px), 390px); max-height: calc(100dvh - 104px); border: 1px solid rgb(74 59 46 / 12%); border-radius: 24px; box-shadow: 0 24px 70px rgb(74 59 46 / 24%); }
.mobile-nav .button { margin-top: 22px; }
body.menu-open::after { position: fixed; z-index: 980; inset: 0; background: rgb(74 59 46 / 36%); content: ""; }

/* Hero com proposta e prova de autoridade */
.hero-static { min-height: clamp(680px, 90svh, 900px); align-items: center; }
.hero-static .hero-shade { background: linear-gradient(90deg, rgb(39 31 24 / 67%) 0%, rgb(39 31 24 / 35%) 52%, transparent 78%), linear-gradient(0deg, rgb(39 31 24 / 32%) 0%, transparent 42%); }
.hero-static .hero-content { width: min(calc(100% - 36px), var(--shell)); margin-inline: auto; padding-top: 126px; padding-bottom: 68px; }
.hero-static h1 {
  max-width: 100%;
  margin-bottom: 36px;
  overflow-wrap: break-word;
  color: var(--off-white);
  font-family: var(--serif);
  font-size: clamp(3.4rem, 13vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: .92;
  text-transform: uppercase;
}
.hero-proof { display: flex; max-width: 780px; margin: 0; padding: 16px 0 0; border-top: 1px solid rgb(245 240 232 / 36%); flex-wrap: wrap; gap: 8px 0; list-style: none; }
.hero-proof li { color: var(--off-white); font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.hero-proof li:not(:last-child)::after { margin-inline: 10px; color: var(--areia); content: "·"; }
.hero-caption { bottom: 18px; }

/* Divisor com foto em parallax de ponta a ponta */
.divider-photo { position: relative; height: clamp(310px, 52vw, 590px); margin: 0; background: var(--brown); overflow: hidden; }
.divider-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Visão geral dos serviços */
.services-overview { background: linear-gradient(rgb(201 168 124 / 16%), rgb(201 168 124 / 16%)), var(--off-white); }
.overview-heading { max-width: 890px; margin-bottom: 42px; }
.overview-heading h2 { margin-bottom: 20px; color: var(--terra); font-size: clamp(1.9rem, 4vw, 2.75rem); line-height: 1.1; }
.overview-heading > p:last-child { max-width: 690px; margin: 0; color: var(--olive); }
.overview-list { border-top: 1px solid rgb(138 107 75 / 48%); }
.overview-item { display: grid; padding: 24px 0; border-bottom: 1px solid rgb(138 107 75 / 48%); gap: 12px; }
.overview-item > span { color: var(--terra); font-family: var(--serif); font-size: 14px; }
.overview-item h3 { margin-bottom: 3px; color: var(--brown); font-size: 22px; }
.overview-item p { margin: 0; color: var(--olive); font-size: 14px; }
.overview-item > a { display: inline-flex; min-height: 44px; padding-block: 8px; align-items: center; gap: 8px; color: var(--terra); font-size: 14px; font-weight: 600; }

/* Rodapé fotográfico */
.footer { position: relative; background: linear-gradient(90deg, rgb(74 59 46 / 96%), rgb(74 59 46 / 82%)), url("../images/estrada-fitz-roy-patagonia.jpg") center 58% / cover no-repeat; overflow: hidden; }
.footer::before { position: absolute; inset: 0; background: linear-gradient(180deg, rgb(74 59 46 / 24%), rgb(74 59 46 / 72%)); content: ""; pointer-events: none; }
.footer > * { position: relative; z-index: 1; }

@media (min-width: 640px) {
  .site-header .header-inner { padding-inline: 18px; }
  .hero-static .hero-content { width: min(calc(100% - 64px), var(--shell)); }
  .overview-item { grid-template-columns: 48px minmax(0, 1fr) auto; align-items: center; gap: 20px; }
}

@media (min-width: 960px) {
  .site-header { right: 24px; left: 24px; }
  .site-header .desktop-nav { margin-left: auto; gap: clamp(11px, 1.15vw, 18px); }
  .site-header .desktop-nav a { color: var(--brown); font-size: 12px; }
  .site-header .header-cta { display: inline-flex; min-height: 42px; padding: 9px 14px; font-size: 13px; }
  .hero-media img { object-position: center 54%; }
  .hero-static .hero-content { padding-top: 142px; padding-bottom: 58px; }
  .hero-caption { right: 30px; bottom: 21px; }
  .overview-item { padding: 28px 0; grid-template-columns: 58px minmax(0, 1fr) 190px; }
}

@media (max-width: 1180px) and (min-width: 960px) {
  .site-header .desktop-nav { gap: 10px; }
  .site-header .desktop-nav a { font-size: 11px; }
}

@media (max-width: 430px) {
  .hero-static .hero-content { padding-top: 112px; }
  .hero-static h1 { font-size: clamp(2.5rem, 10vw, 3.6rem); }
  .hero-proof li { font-size: 11px; }
  .hero-caption { display: none; }
}

/* =========================================================
   Motion system — leve, progressivo e acessível
   ========================================================= */
.hero-media { --hero-x: 0px; --hero-y: 0px; inset: -14px; }
.hero-media img {
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.035);
  transition: transform .65s cubic-bezier(.2, .75, .25, 1);
  will-change: transform;
}

.parallax-image {
  --parallax-y: 0px;
  width: 100%;
  height: calc(100% + 84px);
  margin-top: -42px;
  transform: translate3d(0, var(--parallax-y), 0);
  scale: 1.055;
  transition: scale .6s cubic-bezier(.2, .75, .25, 1), filter .35s ease;
  will-change: transform;
}
.story-feature-image .parallax-image,
.divider-photo .parallax-image,
.guide-card > .parallax-image,
.service-photo .parallax-image,
.section-photo .parallax-image { height: calc(100% + 84px); }

.button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .16s ease, box-shadow .2s ease;
}
.button:hover { transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 2px), 0); box-shadow: 0 10px 24px rgb(74 59 46 / 13%); }
.button:active { transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0) scale(.985); }

.js .reveal { filter: blur(5px); transition: opacity .65s ease, transform .65s cubic-bezier(.2, .75, .25, 1), filter .65s ease; }
.js .reveal.is-visible { filter: blur(0); }
.overview-list .reveal:nth-child(2) { transition-delay: .06s; }
.overview-list .reveal:nth-child(3) { transition-delay: .12s; }

.pointer-light { --pointer-x: 50%; --pointer-y: 50%; position: relative; isolation: isolate; }
.pointer-light::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(320px circle at var(--pointer-x) var(--pointer-y), rgb(245 240 232 / 22%), transparent 64%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.pointer-light:hover::after { opacity: 1; }
.pointer-light > * { position: relative; z-index: 1; }
.overview-item.pointer-light::after, .recommendation-group.pointer-light::after { background: radial-gradient(300px circle at var(--pointer-x) var(--pointer-y), rgb(201 168 124 / 24%), transparent 67%); }
.guide-card.pointer-light::after { z-index: 2; background: radial-gradient(360px circle at var(--pointer-x) var(--pointer-y), rgb(245 240 232 / 19%), transparent 65%); }
.guide-card.pointer-light .guide-card-content { z-index: 3; }

.services-overview { position: relative; overflow: hidden; }
.services-overview > .shell { position: relative; z-index: 1; }
.services-overview::before {
  position: absolute;
  z-index: 0;
  width: clamp(240px, 33vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgb(138 107 75 / 13%);
  border-radius: 46% 54% 59% 41% / 52% 42% 58% 48%;
  content: "";
  pointer-events: none;
  bottom: -36%;
  left: -12%;
  border-color: rgb(107 112 92 / 18%);
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand-logo { transform: scale(1.04); }
  .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

  .story-feature-visual:hover .parallax-image,
  .divider-photo:hover .parallax-image,
  .guide-card:hover > .parallax-image,
  .service-photo:hover .parallax-image { transform: translate3d(0, var(--parallax-y), 0); scale: 1.09; }
  .story-photo { transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease; }
  .story-photo:hover { z-index: 2; box-shadow: 0 20px 46px rgb(74 59 46 / 20%); transform: translateY(-6px); }
  .story-photo figcaption { transition: background .25s ease, transform .3s ease; }
  .story-photo:hover figcaption { background: var(--terra); transform: translate3d(-5px, -5px, 0); }

  .planning-card { transition: background .3s ease, transform .35s cubic-bezier(.2, .8, .2, 1); }
  .planning-card:hover { z-index: 2; background: rgb(245 240 232 / 8%); transform: translateY(-7px); }
  .planning-card-top img { transition: transform .4s cubic-bezier(.2, .8, .2, 1), opacity .25s ease; }
  .planning-card:hover .planning-card-top img { opacity: 1; transform: rotate(-10deg) scale(1.12); }
  .planning-card h3 { transition: color .25s ease, transform .3s ease; }
  .planning-card:hover h3 { color: var(--areia); transform: translateX(4px); }

  .overview-item { transition: background .3s ease, padding-inline .3s ease; }
  .overview-item:hover { padding-right: 14px; padding-left: 14px; background: rgb(245 240 232 / 50%); }
  .overview-item h3, .overview-item > span { transition: color .25s ease, transform .3s ease; }
  .overview-item:hover h3 { color: var(--terra); transform: translateX(4px); }
  .overview-item:hover > span { color: var(--olive); transform: translateY(-3px); }
  .overview-item > a img { transition: transform .25s ease; }
  .overview-item:hover > a img { transform: translateX(5px); }

  .guide-card { transition: transform .42s cubic-bezier(.2, .8, .2, 1), box-shadow .42s ease; }
  .guide-card:hover { box-shadow: 0 28px 68px rgb(74 59 46 / 22%); transform: translateY(-7px) rotate(.25deg); }
  .service-photo { transition: transform .42s cubic-bezier(.2, .8, .2, 1), box-shadow .42s ease; }
  .service-photo:hover { box-shadow: 0 24px 58px rgb(74 59 46 / 20%); transform: translateY(-5px); }

  .steps-list li { transition: background .25s ease, transform .3s ease; }
  .steps-list li:hover { background: rgb(201 168 124 / 10%); transform: translateY(-4px); }
  .steps-list li > span { transition: color .25s ease, transform .3s ease; }
  .steps-list li:hover > span { color: var(--areia); transform: translateY(-2px); }
  .route-section .steps-list li:hover > span { color: var(--brown); }

  .recommendation-group { transition: box-shadow .35s ease, transform .35s cubic-bezier(.2, .8, .2, 1); }
  .recommendation-group:hover { box-shadow: 0 22px 54px rgb(74 59 46 / 12%); transform: translateY(-5px); }
  .footer nav a, .footer-contact > a { transition: color .25s ease, transform .25s ease; }
  .footer nav a:hover, .footer-contact > a:hover { transform: translateX(5px); }
}

@supports (animation-timeline: view()) {
  .services-overview::before {
    animation: organic-scroll-drift 1ms linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
  .overview-heading h2 {
    animation: editorial-scroll-in 1ms linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 38%;
  }
}

@keyframes organic-scroll-drift {
  from { rotate: -8deg; translate: 0 -26px; }
  to { rotate: 18deg; translate: 0 52px; }
}

@keyframes editorial-scroll-in {
  from { opacity: .55; translate: -18px 0; }
  to { opacity: 1; translate: 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media, .hero-media img, .parallax-image, .button { transform: none !important; scale: 1 !important; }
  .pointer-light::after { display: none; }
  .services-overview::before, .overview-heading h2 { animation: none !important; animation-timeline: none !important; }
}
