/* ==========================================================================
   Clínica Dermaclean · Cristina Marinho
   Paleta da marca: verde #014f28 · dourado #b0974f · marfim
   ========================================================================== */

@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500 600; font-display: swap;
  src: url(../fonts/CormorantGaramond-normal-500.woff2) format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 500; font-display: swap;
  src: url(../fonts/CormorantGaramond-italic-500.woff2) format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(../fonts/Manrope-normal-400_700.woff2) format("woff2"); }
@font-face { font-family: "Mrs Saint Delafield"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/MrsSaintDelafield-normal-400.woff2) format("woff2"); }

:root {
  --green-975: #041f11;
  --green-950: #062b18;
  --green-900: #0a3a21;
  --green-800: #014f28;
  --green-700: #155f38;
  --green-600: #2d7650;
  --green-100: #e3ece5;
  --gold-700: #7d6630;
  --gold-600: #957c3d;
  --gold-500: #b0974f;
  --gold-400: #c8b173;
  --gold-300: #dccb96;
  --gold-100: #f3ecd9;
  --ivory: #fbf8f1;
  --cream: #f4efe3;
  --paper: #ffffff;
  --ink: #16231b;
  --ink-2: #39463e;
  --muted: #616e66;
  --line: #e6dfcd;
  --line-2: #d9cfb6;
  --line-dark: rgba(220, 203, 150, .22);

  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --script: "Mrs Saint Delafield", "Brush Script MT", cursive;

  --container: 1240px;
  --gutter: clamp(16px, 4.2vw, 40px);
  --section: clamp(72px, 9vw, 132px);
  --radius: 3px;
  --ease: cubic-bezier(.22, .7, .18, 1);
  --shadow: 0 1px 2px rgba(6, 43, 24, .05), 0 18px 40px -22px rgba(6, 43, 24, .35);
  --header-h: 76px;
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body { margin: 0; background: var(--ivory); color: var(--ink-2); font: 400 1rem/1.7 var(--sans); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; text-wrap: balance; }
p { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure, blockquote, dl, dd { margin: 0; }
address { font-style: normal; }
em { font-style: italic; }
h1 em, h2 em, h3 em { color: var(--gold-600); font-weight: 500; }
::selection { background: var(--gold-300); color: var(--green-950); }
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--green-900); color: var(--ivory); padding: 10px 16px; border-radius: var(--radius); transition: top .2s; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: 820px; }
.section { padding-block: var(--section); }

/* --------------------------------------------------------------- tipos */
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin: 0 0 20px; color: var(--gold-700); font: 600 .72rem/1.3 var(--sans); letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.eyebrow-light { color: var(--gold-400); }
.lead { font-size: clamp(1.06rem, 1rem + .3vw, 1.2rem); line-height: 1.65; color: var(--ink); }
.script { font-family: var(--script); font-weight: 400; letter-spacing: 0; }
h2 { font-size: clamp(2.1rem, 1.45rem + 2.7vw, 3.5rem); margin-bottom: 24px; }
h3 { font-size: clamp(1.3rem, 1.15rem + .5vw, 1.55rem); font-weight: 600; }
.icon { width: 1.25em; height: 1.25em; flex: none; }
.icon-sm { width: 1em; height: 1em; }

/* -------------------------------------------------------------- botões */
.btn { --bg: var(--green-800); --fg: var(--ivory); --bd: var(--green-800);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 26px; border: 1px solid var(--bd); border-radius: var(--radius);
  background: var(--bg); color: var(--fg); font: 600 .78rem/1.2 var(--sans); letter-spacing: .14em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; overflow: hidden; isolation: isolate; transition: color .35s var(--ease), border-color .35s var(--ease), background-color .35s var(--ease); }
.btn::after { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--hover, var(--green-950)); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn .icon { width: 18px; height: 18px; }
.btn-primary { --hover: var(--green-950); }
.btn-gold { --bg: var(--gold-500); --bd: var(--gold-500); --fg: var(--green-975); --hover: var(--gold-300); }
.btn-outline { --bg: transparent; --fg: var(--green-800); --bd: var(--green-800); --hover: var(--green-800); }
.btn-outline:hover { color: var(--ivory); }
.btn-outline-light { --bg: transparent; --fg: var(--ivory); --bd: rgba(251, 248, 241, .5); --hover: var(--ivory); }
.btn-outline-light:hover { color: var(--green-950); }
.btn-link { --bg: transparent; --bd: transparent; --fg: var(--green-800); padding-inline: 4px; }
.btn-link::after { inset: auto 4px 12px 4px; height: 1px; background: var(--gold-500); transform: scaleX(.35); transform-origin: left; }
.btn-link:hover::after { transform: scaleX(1); }
.btn-link .icon { transition: transform .35s var(--ease); }
.btn-link:hover .icon { transform: translateX(4px); }
.btn-sm { min-height: 44px; padding: 10px 18px; font-size: .72rem; }
.btn-lg { min-height: 58px; padding: 16px 32px; }
.btn-block { width: 100%; }
.link-btn { padding: 0; border: 0; background: none; color: inherit; font: inherit; text-decoration: underline; text-underline-offset: .2em; cursor: pointer; }

/* -------------------------------------------------------------- header */
.site-header { position: sticky; top: 0; z-index: 60; height: var(--header-h); background: rgba(251, 248, 241, .86); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s, background-color .3s; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px -24px rgba(6, 43, 24, .5); background: rgba(251, 248, 241, .94); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--green-900); flex: none; }
.brand-mark { width: 46px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font: 600 1.6rem/1 var(--serif); letter-spacing: .01em; }
.brand-sub { margin-top: 5px; font: 600 .6rem/1 var(--sans); letter-spacing: .26em; text-transform: uppercase; color: var(--gold-700); }
.brand-light { color: var(--ivory); }
.brand-light .brand-sub { color: var(--gold-400); }
.brand-light .brand-mark, .menu-open .site-header .brand-mark { filter: brightness(1.7) saturate(.7); }

.nav { margin-left: auto; }
.nav-list { display: flex; gap: clamp(14px, 2vw, 30px); }
.nav-list a { position: relative; display: block; padding: 8px 0; font: 500 .9rem/1 var(--sans); color: var(--ink); text-decoration: none; }
.nav-list a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--gold-500); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav-list a:hover::after, .nav-list a[aria-current]::after { transform: scaleX(1); transform-origin: left; }
.nav-extra { display: none; }
.menu-toggle { display: none; }

@media (max-width: 1023px) {
  :root { --header-h: 68px; }
  .brand-mark { width: 40px; }
  .brand-name { font-size: 1.45rem; }
  .header-cta { display: none; }
  .menu-toggle { position: relative; z-index: 71; display: grid; place-items: center; width: 46px; height: 46px; margin-left: auto; margin-right: -8px; border: 0; background: none; cursor: pointer; }
  .menu-bars, .menu-bars::before, .menu-bars::after { display: block; width: 24px; height: 1.5px; background: var(--green-900); transition: transform .4s var(--ease), background-color .2s; }
  .menu-bars { position: relative; }
  .menu-bars::before, .menu-bars::after { content: ""; position: absolute; left: 0; }
  .menu-bars::before { top: -7px; }
  .menu-bars::after { top: 7px; }
  .menu-open .menu-bars { background: transparent; }
  .menu-open .menu-bars::before { transform: translateY(7px) rotate(45deg); background: var(--ivory); }
  .menu-open .menu-bars::after { transform: translateY(-7px) rotate(-45deg); background: var(--ivory); }
  .menu-open .site-header { background: transparent; border-color: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .menu-open .site-header .brand { color: var(--ivory); position: relative; z-index: 71; }
  .menu-open .site-header .brand-sub { color: var(--gold-400); }

  .nav { position: fixed; inset: 0; z-index: 70; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; margin: 0; padding: calc(var(--header-h) + 28px) var(--gutter) max(28px, env(safe-area-inset-bottom));
    background: var(--green-950); color: var(--ivory); overflow-x: hidden; overflow-y: auto; visibility: hidden; opacity: 0; clip-path: inset(0 0 100% 0); transition: clip-path .6s var(--ease), opacity .3s, visibility 0s .6s; }
  .menu-open .nav { visibility: visible; opacity: 1; clip-path: inset(0 0 0 0); transition: clip-path .6s var(--ease), opacity .2s, visibility 0s; }
  .nav::before { content: ""; position: absolute; right: -80px; bottom: 60px; width: 320px; aspect-ratio: 522/491; background: url(../img/borboleta-480.webp) center/contain no-repeat; opacity: .08; pointer-events: none; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line-dark); }
  .nav-list a { padding: 16px 0; color: var(--ivory); font: 500 clamp(1.9rem, 7vw, 2.4rem)/1.1 var(--serif); opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .nav-list a::after { display: none; }
  .menu-open .nav-list a { opacity: 1; transform: none; }
  .menu-open .nav-list li:nth-child(1) a { transition-delay: .12s; }
  .menu-open .nav-list li:nth-child(2) a { transition-delay: .17s; }
  .menu-open .nav-list li:nth-child(3) a { transition-delay: .22s; }
  .menu-open .nav-list li:nth-child(4) a { transition-delay: .27s; }
  .menu-open .nav-list li:nth-child(5) a { transition-delay: .32s; }
  .menu-open .nav-list li:nth-child(6) a { transition-delay: .37s; }
  .nav-extra { display: grid; gap: 16px; }
  .nav-extra-info { display: flex; gap: 12px; align-items: flex-start; margin: 0; color: rgba(251, 248, 241, .78); font-size: .9rem; line-height: 1.5; text-decoration: none; }
  .nav-extra-info .icon { color: var(--gold-400); margin-top: 2px; }
  body.menu-open { overflow: hidden; }
}

/* ---------------------------------------------------------------- hero */
.hero { position: relative; padding: clamp(28px, 5vw, 64px) 0 clamp(48px, 6vw, 88px); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 70% at 85% 30%, rgba(176, 151, 79, .14), transparent 70%), radial-gradient(40% 50% at 0% 100%, rgba(1, 79, 40, .06), transparent 70%); pointer-events: none; }
.hero-grid { position: relative; display: grid; gap: clamp(40px, 6vw, 72px); align-items: center; }
.hero-title { font-size: clamp(2.75rem, 1.6rem + 4.6vw, 5.35rem); line-height: .98; letter-spacing: -.02em; margin-bottom: 26px; }
.hero-lead { max-width: 34em; font-size: clamp(1.02rem, .98rem + .3vw, 1.16rem); color: var(--ink-2); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: clamp(36px, 5vw, 56px); border-top: 1px solid var(--line); }
.hero-facts > div { padding: 18px 16px 0 0; }
.hero-facts > div + div { padding-left: 16px; border-left: 1px solid var(--line); }
.hero-facts dt { font: 600 clamp(1.15rem, 1rem + .6vw, 1.5rem)/1.1 var(--serif); color: var(--green-800); }
.hero-facts dd { margin-top: 6px; font-size: .82rem; line-height: 1.45; color: var(--muted); }

.hero-art { position: relative; width: min(100%, 480px); margin-inline: auto; aspect-ratio: 4 / 5.2; }
.hero-arch { position: absolute; inset: 11% 3% 0; border-radius: 999px 999px 0 0; background: url(../img/marmore-758.webp) center/cover, var(--cream); box-shadow: inset 0 0 0 1px rgba(176, 151, 79, .25); overflow: hidden; }
.hero-arch::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(243, 236, 217, .1), rgba(1, 79, 40, .08) 70%, rgba(1, 79, 40, .22)); }
.hero-arch-line { position: absolute; inset: 7% -1% -3% 7%; border: 1px solid var(--gold-500); border-bottom: 0; border-radius: 999px 999px 0 0; opacity: .6; pointer-events: none; }
.hero-photo { position: absolute; left: 50%; bottom: 0; width: 86%; height: auto; transform: translateX(-50%); filter: drop-shadow(0 30px 30px rgba(6, 43, 24, .18)); }
.hero-seal { position: absolute; top: 2%; right: -2%; width: clamp(104px, 22%, 128px); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: var(--green-900); box-shadow: var(--shadow); }
.hero-seal-text { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 38s linear infinite; }
.hero-seal-text text { fill: var(--gold-300); font: 700 15.5px var(--sans); letter-spacing: .06em; }
.hero-seal-mark { width: 44%; filter: brightness(1.7) saturate(.7); }
.hero-card { position: absolute; left: -2%; bottom: 12%; display: grid; gap: 2px; padding: 16px 22px; background: rgba(255, 255, 255, .92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-left: 2px solid var(--gold-500); box-shadow: var(--shadow); }
.hero-card-kicker { font: 600 .66rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.hero-card strong { font: 600 1.45rem/1.1 var(--serif); color: var(--green-800); }
@keyframes spin { to { transform: rotate(360deg); } }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); }
}
@media (max-width: 599px) {
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts > div:nth-child(3) { grid-column: 1 / -1; padding-left: 0; border-left: 0; border-top: 1px solid var(--line); margin-top: 16px; }
  .hero-actions .btn-primary { width: 100%; }
  .hero-art { width: min(100%, 360px); }
  .hero-card { left: 0; bottom: 8%; padding: 12px 16px; }
  .hero-card strong { font-size: 1.2rem; }
}

/* ------------------------------------------------------------- marquee */
.marquee { overflow: hidden; background: var(--green-900); color: var(--gold-300); border-block: 1px solid var(--green-800); }
.marquee-track { display: flex; width: max-content; animation: marquee 70s linear infinite; }
.marquee ul { display: flex; flex: none; }
.marquee li { display: flex; align-items: center; padding: 18px 0; font: italic 500 clamp(1.15rem, 1rem + .5vw, 1.45rem)/1 var(--serif); white-space: nowrap; }
.marquee li::after { content: ""; width: 6px; height: 6px; margin: 0 28px; background: var(--gold-500); transform: rotate(45deg); opacity: .8; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------- sobre */
.about { background: var(--paper); }
.about-grid { display: grid; gap: clamp(44px, 6vw, 96px); align-items: center; }
.about-figure { position: relative; isolation: isolate; max-width: 520px; margin-inline: auto; width: 100%; }
.about-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; transition: transform 1.4s var(--ease); }
.about-figure:hover .about-photo img { transform: scale(1.03); }
.about-figure::before { content: ""; position: absolute; inset: 22px -22px 40px 22px; border: 1px solid var(--gold-500); border-radius: var(--radius); z-index: -1; }
.about-figure figcaption { margin-top: 34px; font-size: .8rem; color: var(--muted); letter-spacing: .02em; }
.about-copy > p:not(.lead):not(.eyebrow):not(.signature) { max-width: 36em; }
.creds { display: grid; grid-template-columns: 1fr 1fr; margin: 34px 0 30px; border-top: 1px solid var(--line); }
.creds > div { padding: 16px 16px 16px 0; border-bottom: 1px solid var(--line); }
.creds > div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.creds dt { font: 600 .66rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-700); }
.creds dd { margin-top: 6px; font: 500 1.18rem/1.25 var(--serif); color: var(--ink); }
.signature { display: flex; flex-direction: column; margin: 0; color: var(--muted); font-size: .9rem; }
.signature .script { margin-top: -2px; font-size: clamp(2.8rem, 2.2rem + 2vw, 3.6rem); line-height: 1.1; color: var(--green-800); }
@media (min-width: 960px) {
  .about-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
}

/* ------------------------------------------------------ jato de plasma */
.plasma { position: relative; background: radial-gradient(80% 60% at 20% 40%, #0d4a2a 0%, var(--green-950) 60%, var(--green-975) 100%); color: rgba(251, 248, 241, .8); overflow: hidden; }
.plasma h2, .plasma h3 { color: var(--ivory); }
.plasma h2 em { color: var(--gold-400); }
.plasma .lead { color: var(--ivory); }
.plasma-grid { display: grid; gap: clamp(40px, 6vw, 88px); align-items: center; }
.plasma-visual { position: relative; width: min(100%, 460px); margin-inline: auto; aspect-ratio: 1 / 1.12; }
.plasma-ring { position: absolute; inset: 6% 4% 14%; border-radius: 50%; border: 1px solid rgba(200, 177, 115, .35); }
.plasma-ring::before { content: ""; position: absolute; inset: 7%; border-radius: 50%; border: 1px dashed rgba(200, 177, 115, .22); animation: spin 90s linear infinite; }
.plasma-glow { position: absolute; left: 10%; top: 8%; width: 80%; opacity: .5; mix-blend-mode: screen; filter: grayscale(1) sepia(1) saturate(2.4) hue-rotate(-8deg) brightness(1.05); animation: glow 5s ease-in-out infinite; }
.plasma-device { position: absolute; left: 12%; bottom: 0; width: 44%; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .45)); }
.plasma-pen { position: absolute; right: 12%; bottom: 4%; width: 26%; transform: rotate(14deg); transform-origin: bottom center; filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .5)); animation: float 7s ease-in-out infinite; }
@keyframes glow { 50% { opacity: .78; transform: scale(1.03); } }
@keyframes float { 50% { transform: rotate(11deg) translateY(-12px); } }
.plasma-steps { display: grid; gap: 0; margin: 36px 0; border-top: 1px solid var(--line-dark); }
.plasma-steps li { display: grid; grid-template-columns: 56px 1fr; column-gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.plasma-steps .num { grid-row: span 2; font: italic 500 1.9rem/1 var(--serif); color: var(--gold-400); }
.plasma-steps h3 { font-size: 1.3rem; margin-bottom: 4px; }
.plasma-steps p { margin: 0; font-size: .94rem; }
.plasma-uses > p { margin-bottom: 12px; font: 600 .7rem/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-400); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips a { display: inline-flex; padding: 8px 14px; border: 1px solid var(--line-dark); border-radius: 999px; font-size: .85rem; text-decoration: none; color: var(--ivory); transition: background-color .3s, border-color .3s, color .3s; }
.chips a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-975); }
@media (min-width: 960px) {
  .plasma-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
  .plasma-steps { grid-template-columns: repeat(3, 1fr); border-top: 0; }
  .plasma-steps li { display: block; padding: 22px 22px 0 0; border-bottom: 0; border-top: 1px solid var(--line-dark); }
  .plasma-steps li + li { padding-left: 22px; border-left: 1px solid var(--line-dark); }
  .plasma-steps .num { display: block; margin-bottom: 14px; }
}

/* -------------------------------------------------------- procedimentos */
.procs { background: var(--cream); }
.section-head { display: grid; gap: 8px 48px; align-items: end; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head h2 { margin-bottom: 0; }
.section-head > p { max-width: 30em; margin: 0; color: var(--muted); }
.section-head-tight { margin-bottom: 28px; }
@media (min-width: 960px) {
  .section-head { grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); }
  .section-head-tight { grid-template-columns: 1fr auto; }
}

.tabs { display: flex; gap: 6px; margin: 0 calc(var(--gutter) * -1) 32px; padding-inline: var(--gutter); border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
.tabs::-webkit-scrollbar { display: none; }
.tab { position: relative; flex: none; display: inline-flex; align-items: center; gap: 8px; padding: 14px 18px 16px; border: 0; background: none; color: var(--muted); font: 600 .9rem/1 var(--sans); cursor: pointer; scroll-snap-align: start; transition: color .3s; }
.tab::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 0; height: 2px; background: var(--green-800); transform: scaleX(0); transition: transform .45s var(--ease); }
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--green-800); }
.tab[aria-selected="true"]::after { transform: scaleX(1); }
.tab-count { display: inline-grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: rgba(1, 79, 40, .08); font-size: .7rem; color: var(--green-800); }
.tab[aria-selected="true"] .tab-count { background: var(--green-800); color: var(--ivory); }
@media (min-width: 1240px) { .tabs { margin-inline: 0; padding-inline: 0; } }

.tab-panel { display: grid; gap: clamp(24px, 4vw, 56px); align-items: start; }
.tab-panel[hidden] { display: none; }
.tab-panel:focus-visible { outline-offset: 8px; }
.tab-panel.is-entering .cat-card, .tab-panel.is-entering .proc-list li { animation: rise .7s var(--ease) both; }
.tab-panel.is-entering .proc-list li:nth-child(2) { animation-delay: .04s; }
.tab-panel.is-entering .proc-list li:nth-child(3) { animation-delay: .08s; }
.tab-panel.is-entering .proc-list li:nth-child(4) { animation-delay: .12s; }
.tab-panel.is-entering .proc-list li:nth-child(5) { animation-delay: .16s; }
.tab-panel.is-entering .proc-list li:nth-child(n+6) { animation-delay: .2s; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }

.cat-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--green-900); color: var(--ivory); }
.cat-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.cat-card-media img { width: 100%; height: 100%; object-fit: cover; }
.cat-card-media .art { height: 100%; }
.cat-card-body { padding: 26px 26px 28px; }
.cat-card-body h3 { color: var(--ivory); margin-bottom: 10px; }
.cat-card-body p { font-size: .94rem; color: rgba(251, 248, 241, .78); margin-bottom: 20px; }

.proc-list { border-top: 1px solid var(--line); }
.proc-row { position: relative; display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; align-items: center; padding: 20px 8px 20px 4px; border-bottom: 1px solid var(--line); text-decoration: none; transition: background-color .35s var(--ease), padding .35s var(--ease); }
.proc-row::before { content: ""; position: absolute; left: 0; top: -1px; bottom: -1px; width: 2px; background: var(--gold-500); transform: scaleY(0); transition: transform .35s var(--ease); }
.proc-num { font: italic 500 1.2rem/1 var(--serif); color: var(--gold-600); }
.proc-text { display: grid; gap: 4px; }
.proc-name { font: 600 clamp(1.3rem, 1.15rem + .5vw, 1.6rem)/1.15 var(--serif); color: var(--ink); transition: color .3s; }
.proc-desc { font-size: .9rem; line-height: 1.5; color: var(--muted); }
.proc-go { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 50%; color: var(--green-800); transition: background-color .35s, border-color .35s, color .35s, transform .35s var(--ease); }
.proc-go .icon { width: 18px; height: 18px; }
.proc-row:hover { background: rgba(255, 255, 255, .6); padding-left: 16px; }
.proc-row:hover::before { transform: scaleY(1); }
.proc-row:hover .proc-name { color: var(--green-800); }
.proc-row:hover .proc-go { background: var(--green-800); border-color: var(--green-800); color: var(--ivory); transform: rotate(-45deg); }
@media (min-width: 960px) {
  .tab-panel { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
  .cat-card { position: sticky; top: calc(var(--header-h) + 24px); }
  .cat-card-media { aspect-ratio: 4 / 3.4; }
}
@media (max-width: 599px) {
  .proc-row { grid-template-columns: 30px 1fr auto; gap: 12px; }
  .proc-go { width: 36px; height: 36px; }
  .cat-card-body { padding: 22px; }
}

/* art panels (sem foto) */
.art { position: relative; display: grid; place-items: center; width: 100%; height: 100%; min-height: 220px; overflow: hidden; background: radial-gradient(70% 70% at 50% 45%, #0f5431 0%, var(--green-900) 55%, var(--green-950) 100%); }
.art::before { content: ""; position: absolute; inset: 9% 9% 0; border: 1px solid rgba(200, 177, 115, .3); border-bottom: 0; border-radius: 999px 999px 0 0; }
.art > img { grid-area: 1 / 1; }
.art-caption { position: absolute; left: 50%; bottom: 7%; transform: translateX(-50%); font: 600 .64rem/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: var(--gold-300); white-space: nowrap; }
.art-butterfly-img { position: relative; width: 46%; max-width: 240px; filter: brightness(1.45) saturate(.75) drop-shadow(0 0 30px rgba(200, 177, 115, .25)); animation: flutter 6s ease-in-out infinite; }
.art-glow { position: relative; width: 70%; opacity: .45; mix-blend-mode: screen; filter: grayscale(1) sepia(1) saturate(2.4) hue-rotate(-8deg); animation: glow 5s ease-in-out infinite; }
.art-pen { position: relative; width: 20%; max-width: 110px; transform: rotate(18deg); filter: drop-shadow(0 20px 26px rgba(0, 0, 0, .5)); animation: float 7s ease-in-out infinite; }
@keyframes flutter { 50% { transform: translateY(-8px) scale(1.02); } }

/* ----------------------------------------------------------- processo */
.process { background: var(--ivory); }
.process-grid { display: grid; gap: clamp(40px, 6vw, 96px); align-items: center; }
.process-photo { position: relative; max-width: 520px; width: 100%; margin-inline: auto; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 999px 999px var(--radius) var(--radius); }
.process-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.steps { margin: 12px 0 36px; }
.steps li { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.steps li:first-child { border-top: 1px solid var(--line); }
.step-n { font: 500 2.4rem/1 var(--serif); color: var(--gold-500); }
.steps h3 { margin-bottom: 6px; }
.steps p { margin: 0; color: var(--muted); }
@media (min-width: 960px) {
  .process-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
}

/* -------------------------------------------------------------- frase */
.quote-band { position: relative; overflow: hidden; background: url(../img/marmore-758.webp) center/cover, var(--cream); }
.quote-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251, 248, 241, .94) 0%, rgba(251, 248, 241, .8) 55%, rgba(251, 248, 241, .45) 100%); }
.quote-grid { position: relative; display: grid; align-items: end; gap: 0; padding-top: clamp(64px, 8vw, 110px); }
.big-quote { padding-bottom: clamp(40px, 6vw, 110px); }
.big-quote p { margin: 0 0 18px; font: italic 500 clamp(1.9rem, 1.3rem + 2.6vw, 3.3rem)/1.18 var(--serif); color: var(--green-900); text-wrap: balance; }
.big-quote p em { color: var(--gold-600); }
.big-quote p::before { content: "“"; display: block; height: .55em; font-size: 2.2em; line-height: 1; color: var(--gold-500); }
.big-quote footer .script { font-size: clamp(2.4rem, 2rem + 1.4vw, 3.2rem); color: var(--gold-600); }
.quote-photo { width: min(78%, 400px); margin-inline: auto; }
.quote-photo img { width: 100%; }
@media (min-width: 960px) {
  .quote-grid { grid-template-columns: minmax(0, 1.3fr) minmax(0, .7fr); gap: 48px; }
  .quote-photo { width: 100%; }
}

/* -------------------------------------------------------- depoimentos */
.testimonials { background: var(--paper); }
.t-grid { display: grid; gap: 20px; }
.t-card { position: relative; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 38px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s; }
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.t-mark { width: 38px; margin-bottom: 18px; fill: var(--gold-500); }
.t-card blockquote p { margin: 0; font: 500 1.28rem/1.45 var(--serif); color: var(--ink); }
.t-card figcaption { display: grid; gap: 2px; margin-top: auto; padding-top: 22px; font-size: .82rem; color: var(--muted); }
.t-card figcaption strong { font-weight: 600; color: var(--green-800); letter-spacing: .02em; }
.t-featured { background: var(--green-900); border-color: var(--green-900); }
.t-featured .t-mark { fill: var(--gold-400); }
.t-featured blockquote p { color: var(--ivory); font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); }
.t-featured figcaption { color: rgba(251, 248, 241, .7); }
.t-featured figcaption strong { color: var(--gold-300); }
.t-more { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink-2); text-decoration: none; transition: border-color .3s, background-color .3s; }
.t-more > .icon:first-child { color: var(--gold-600); width: 26px; height: 26px; }
.t-more strong { color: var(--green-800); }
.t-more > .icon:last-child { margin-left: auto; color: var(--green-800); transition: transform .35s var(--ease); }
.t-more:hover { border-color: var(--gold-500); background: var(--ivory); }
.t-more:hover > .icon:last-child { transform: translate(3px, -3px); }
@media (min-width: 900px) {
  .t-grid { grid-template-columns: 1.25fr 1fr; grid-template-rows: auto auto; }
  .t-featured { grid-row: span 2; }
}

/* ----------------------------------------------------------------- FAQ */
.faq { background: var(--cream); }
.faq-grid { display: grid; gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq-intro p:not(.eyebrow) { color: var(--muted); max-width: 26em; margin-bottom: 28px; }
.accordion { border-top: 1px solid var(--line-2); }
.acc { border-bottom: 1px solid var(--line-2); }
.acc summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; list-style: none; font: 600 clamp(1.2rem, 1.1rem + .4vw, 1.42rem)/1.3 var(--serif); color: var(--ink); transition: color .3s; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { color: var(--green-800); }
.acc-icon { position: relative; flex: none; width: 34px; height: 34px; border: 1px solid var(--line-2); border-radius: 50%; transition: background-color .3s, border-color .3s, transform .45s var(--ease); }
.acc-icon::before, .acc-icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: var(--green-800); transform: translate(-50%, -50%); transition: transform .45s var(--ease), background-color .3s; }
.acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc[open] .acc-icon { background: var(--green-800); border-color: var(--green-800); transform: rotate(180deg); }
.acc[open] .acc-icon::before, .acc[open] .acc-icon::after { background: var(--ivory); }
.acc[open] .acc-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.acc-body { overflow: hidden; }
.acc-body p { margin: 0; padding: 0 56px 24px 0; color: var(--ink-2); }
@media (max-width: 599px) { .acc-body p { padding-right: 0; } }
@media (min-width: 960px) {
  .faq-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
  .faq-intro { position: sticky; top: calc(var(--header-h) + 32px); }
}

/* ------------------------------------------------------------- contato */
.contact { background: var(--green-950); color: rgba(251, 248, 241, .8); padding-bottom: clamp(48px, 6vw, 80px); }
.contact h2 { color: var(--ivory); }
.contact h2 em { color: var(--gold-400); }
.contact .lead { color: rgba(251, 248, 241, .86); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(48px, 6vw, 88px); align-items: center; }
.contact-grid > * { min-width: 0; }
.contact-list { display: grid; margin: 34px 0 36px; border-top: 1px solid var(--line-dark); }
.contact-list li { display: grid; grid-template-columns: 28px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.contact-list li > .icon { width: 22px; height: 22px; color: var(--gold-400); margin-top: 3px; }
.contact-list .k { display: block; margin-bottom: 4px; font: 600 .66rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-400); }
.contact-list a, .contact-list address { color: var(--ivory); font-size: 1.05rem; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list .small-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: .85rem; color: var(--gold-300); }
.contact-portrait { position: relative; max-width: 440px; width: calc(100% - 18px); margin-inline: auto; }
.contact-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 25%; border-radius: var(--radius); }
.contact-portrait::before { content: ""; position: absolute; inset: -18px 18px 60px -18px; border: 1px solid rgba(200, 177, 115, .45); border-radius: var(--radius); pointer-events: none; }
.contact-portrait figcaption { position: relative; margin: -56px 20px 0; padding: 20px 22px; background: var(--ivory); color: var(--green-900); font: italic 500 1.2rem/1.35 var(--serif); box-shadow: var(--shadow); border-left: 2px solid var(--gold-500); }
.map { position: relative; margin-top: clamp(56px, 7vw, 96px); min-height: clamp(300px, 36vw, 420px); border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; background: repeating-linear-gradient(0deg, transparent 0 39px, rgba(200, 177, 115, .07) 39px 40px), repeating-linear-gradient(90deg, transparent 0 39px, rgba(200, 177, 115, .07) 39px 40px); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.25) contrast(1.05); }
.map-facade { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 24px; text-align: center; }
.map-pin { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--gold-500); color: var(--green-975); box-shadow: 0 0 0 10px rgba(176, 151, 79, .15), 0 0 0 22px rgba(176, 151, 79, .06); animation: pulse 2.8s ease-in-out infinite; }
.map-pin .icon { width: 26px; height: 26px; }
.map-facade p { margin: 6px 0 4px; color: var(--ivory); }
.map-facade small { font-size: .75rem; color: rgba(251, 248, 241, .55); }
.map.is-loaded .map-facade { display: none; }
@keyframes pulse { 50% { box-shadow: 0 0 0 14px rgba(176, 151, 79, .12), 0 0 0 30px rgba(176, 151, 79, 0); } }
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: start; }
  .contact-copy { position: sticky; top: calc(var(--header-h) + 32px); }
}
.contact-list .v { color: var(--ivory); font-size: 1.05rem; }
.form-steps { display: grid; gap: 12px; margin: 30px 0 6px; }
.form-steps li { display: flex; align-items: center; gap: 14px; }
.form-steps span { display: grid; place-items: center; flex: none; width: 32px; height: 32px; border: 1px solid rgba(200, 177, 115, .6); border-radius: 50%; font: italic 500 1.15rem/1 var(--serif); color: var(--gold-300); }
.form-steps p { margin: 0; color: rgba(251, 248, 241, .86); font-size: .95rem; }

/* ------------------------------------------------ formulário de agendamento */
.form-wrap { position: relative; scroll-margin-top: calc(var(--header-h) + 16px); }
.lead-form, .lead-done { position: relative; padding: clamp(22px, 3.2vw, 38px); background: var(--ivory); color: var(--ink-2); border-top: 2px solid var(--gold-500); border-radius: var(--radius); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .65); }
.lf-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.lf-avatar { flex: none; width: 58px; height: 58px; object-fit: cover; object-position: 50% 16%; border-radius: 50%; box-shadow: 0 0 0 2px var(--ivory), 0 0 0 3px var(--gold-500); }
.lf-kicker { margin: 0 0 4px; font: 600 .68rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-700); }
.lf-head h3 { font-size: clamp(1.5rem, 1.3rem + .8vw, 1.9rem); }
.lf-row { display: grid; gap: 0 16px; }
@media (min-width: 600px) { .lf-row { grid-template-columns: 1fr 1fr; } }
.field { min-width: 0; margin: 0 0 18px; padding: 0; border: 0; }
.field > label:not(.chip), .field > legend { display: block; margin-bottom: 8px; padding: 0; font: 600 .74rem/1.2 var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.field > legend span { margin-left: 6px; font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--muted); font-size: .82rem; }
.field input[type="text"], .field input[type="tel"] { width: 100%; height: 52px; padding: 0 16px; border: 1px solid var(--line-2); border-radius: var(--radius); background: var(--paper); color: var(--ink); font: 500 1rem/1 var(--sans); transition: border-color .25s, box-shadow .25s; -webkit-appearance: none; appearance: none; }
.field input::placeholder { color: #9aa39d; font-weight: 400; }
.field input:focus { outline: none; border-color: var(--green-800); box-shadow: 0 0 0 3px rgba(1, 79, 40, .12); }
.field.has-error input { border-color: #a3392b; box-shadow: 0 0 0 3px rgba(163, 57, 43, .1); }
.field-error { margin: 7px 0 0; font-size: .8rem; line-height: 1.4; color: #a3392b; }
.field-error[hidden] { display: none; }

.pick-tabs { display: flex; gap: 6px; margin: 0 0 14px; padding-bottom: 2px; overflow-x: auto; scrollbar-width: none; }
.pick-tabs::-webkit-scrollbar { display: none; }
.pick-tab { flex: none; display: inline-flex; align-items: center; gap: 7px; min-height: 38px; padding: 8px 14px; border: 1px solid var(--line-2); border-radius: 999px; background: transparent; color: var(--ink-2); font: 600 .8rem/1 var(--sans); cursor: pointer; transition: background-color .25s, border-color .25s, color .25s; }
.pick-tab:hover { border-color: var(--green-800); color: var(--green-800); }
.pick-tab[aria-pressed="true"] { background: var(--green-800); border-color: var(--green-800); color: var(--ivory); }
.pick-count { display: inline-grid; place-items: center; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px; background: var(--gold-500); color: var(--green-975); font-size: .68rem; }
.pick-count[hidden] { display: none; }
.pick-group-title { margin: 14px 0 8px; font: 600 .7rem/1.2 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold-700); }
.js .pick-group { display: none; }
.js .pick-group.is-active { display: block; animation: rise .45s var(--ease) both; }
.js .pick-group-title { display: none; }
.pick-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; display: inline-flex; cursor: pointer; }
.chip input { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.chip span { display: inline-flex; align-items: center; gap: 9px; min-height: 40px; padding: 8px 14px 8px 11px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--paper); color: var(--ink); font-size: .88rem; line-height: 1.25; transition: background-color .2s, border-color .2s, color .2s; }
.chip span::before { content: ""; flex: none; width: 16px; height: 16px; border: 1px solid #b9b19a; border-radius: 50%; background: var(--paper) center / 10px no-repeat; transition: background-color .2s, border-color .2s; }
.chip:hover span { border-color: var(--green-700); }
.chip input:checked + span { background: var(--gold-100); border-color: var(--gold-500); color: var(--green-900); }
.chip input:checked + span::before { border-color: var(--green-800); background-color: var(--green-800); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fbf8f1' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5 9.5 17 19 7.5'/%3E%3C/svg%3E"); }
.chip input:focus-visible + span { outline: 2px solid var(--gold-500); outline-offset: 2px; }
.chip-general { margin-top: 12px; }
.chip-general span { border-style: dashed; }
.picked { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line-2); }
.picked[hidden] { display: none; }
.picked-label { font: 600 .7rem/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.picked-list { display: contents; }
.picked-list button { display: inline-flex; align-items: center; gap: 6px; min-height: 30px; padding: 4px 8px 4px 12px; border: 0; border-radius: 999px; background: var(--green-800); color: var(--ivory); font: 500 .78rem/1.2 var(--sans); cursor: pointer; transition: background-color .2s; }
.picked-list button:hover { background: var(--green-950); }
.picked-list .icon { width: 13px; height: 13px; opacity: .8; }

.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; align-items: flex-start; gap: 12px; margin: 2px 0 4px; font-size: .84rem; line-height: 1.5; color: var(--ink-2); cursor: pointer; }
.consent input { flex: none; width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--green-800); cursor: pointer; }
.consent a { color: var(--green-800); }
.lf-preview { margin: 18px 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.lf-preview summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 16px; list-style: none; cursor: pointer; font: 600 .82rem/1.2 var(--sans); color: var(--green-800); }
.lf-preview summary::-webkit-details-marker { display: none; }
.lf-preview summary .icon { transform: rotate(90deg); transition: transform .3s var(--ease); }
.lf-preview[open] summary .icon { transform: rotate(-90deg); }
.wa-chat { padding: 14px; background: #efeae2; border-top: 1px solid var(--line); }
.wa-bubble { position: relative; max-width: 94%; margin: 0 0 0 auto; padding: 9px 12px; border-radius: 8px 0 8px 8px; background: #d9fdd3; box-shadow: 0 1px .5px rgba(11, 20, 26, .13); color: #111b21; font: 400 .88rem/1.45 var(--sans); white-space: pre-wrap; word-break: break-word; }
.lf-submit { margin-top: 6px; }
.lf-submit.is-loading { pointer-events: none; opacity: .85; }
.lf-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 14px 0 0; font-size: .78rem; color: var(--muted); text-align: center; }
.lf-note .icon { color: var(--gold-700); }
.lf-status { margin: 14px 0 0; padding: 12px 14px; border-left: 2px solid #a3392b; background: #f8ebe8; color: #7d2a20; font-size: .86rem; }
.lf-status[hidden] { display: none; }
.lead-done { text-align: center; padding-block: clamp(40px, 5vw, 60px); }
.lead-done[hidden] { display: none; }
.lead-done:focus { outline: none; }
.done-mark { display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 50%; background: var(--green-800); color: var(--ivory); box-shadow: 0 0 0 8px rgba(1, 79, 40, .08); animation: rise .6s var(--ease) both; }
.done-mark .icon { width: 30px; height: 30px; }
.lead-done h3 { font-size: clamp(1.7rem, 1.4rem + 1vw, 2.2rem); margin-bottom: 12px; }
.lead-done p { max-width: 26em; margin: 0 auto 24px; }
.lead-done .link-btn { margin-top: 16px; font-size: .86rem; color: var(--green-800); }
.wa-float.is-away, .wa-float.is-visible.is-away { opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none; }

/* -------------------------------------------------------------- footer */
.site-footer { background: var(--green-975); color: rgba(251, 248, 241, .66); padding: clamp(56px, 7vw, 88px) 0 28px; font-size: .92rem; }
.site-footer a { color: rgba(251, 248, 241, .82); text-decoration: none; }
.site-footer a:hover { color: var(--gold-300); }
.footer-top { display: grid; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
.footer-brand p { max-width: 24em; margin: 22px 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line-dark); border-radius: 50%; transition: background-color .3s, border-color .3s, color .3s; }
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-975); }
.footer-social .icon { width: 20px; height: 20px; }
.footer-title { margin-bottom: 16px; font: 600 .68rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-400); }
.footer-col ul { display: grid; gap: 10px; }
.footer-contact span { color: rgba(251, 248, 241, .5); }
.footer-disclaimer { margin: 28px 0; font-size: .8rem; line-height: 1.6; color: rgba(251, 248, 241, .5); max-width: 62em; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; font-size: .8rem; color: rgba(251, 248, 241, .5); }
.footer-bottom p { margin: 0; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-bottom .link-btn { color: rgba(251, 248, 241, .82); text-decoration: none; font-size: .8rem; }
.footer-bottom .link-btn:hover { color: var(--gold-300); }
@media (min-width: 720px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

/* ---------------------------------------------------- whatsapp flutuante */
.wa-float { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 55; display: flex; align-items: center; gap: 10px; height: 58px; padding: 0 17px; border-radius: 999px; background: var(--green-800); color: var(--ivory); text-decoration: none; box-shadow: 0 14px 30px -10px rgba(6, 43, 24, .55), 0 0 0 1px rgba(200, 177, 115, .4); opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none; transition: opacity .4s var(--ease), transform .4s var(--ease), background-color .3s, bottom .4s var(--ease); }
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float .icon { width: 24px; height: 24px; }
.wa-float-label { max-width: 0; overflow: hidden; white-space: nowrap; font: 600 .78rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; transition: max-width .5s var(--ease); }
.wa-float:hover { background: var(--green-950); }
.wa-float:hover .wa-float-label { max-width: 180px; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid var(--gold-500); animation: ring 3.2s var(--ease) infinite; pointer-events: none; }
@keyframes ring { 0% { opacity: .8; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.35); } }
.cookie-visible .wa-float { bottom: calc(max(16px, env(safe-area-inset-bottom)) + var(--cookie-h, 0px)); }

/* ------------------------------------------------------------- cookies */
.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; display: grid; gap: 14px; max-width: 460px; padding: 20px 22px; background: var(--paper); border: 1px solid var(--line); border-top: 2px solid var(--gold-500); border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(6, 43, 24, .55); font-size: .86rem; line-height: 1.55; animation: rise .6s var(--ease) both; }
.cookie-bar[hidden] { display: none; }
.cookie-bar p { margin: 0; }
.cookie-bar strong { color: var(--ink); }
.cookie-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; }
.cookie-actions .link-btn { font-size: .82rem; color: var(--green-800); }
@media (max-width: 599px) {
  .cookie-bar { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
  .cookie-actions .btn { flex: 1; }
}
.cookie-modal { width: min(560px, calc(100% - 24px)); max-height: calc(100dvh - 24px); padding: 0; border: 0; border-radius: var(--radius); background: var(--paper); color: var(--ink-2); box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5); }
.cookie-modal::backdrop { background: rgba(4, 31, 17, .6); backdrop-filter: blur(3px); }
.cookie-modal-inner { padding: 26px; }
.cookie-modal-inner > p { font-size: .9rem; color: var(--muted); }
.cookie-modal-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 8px; }
.cookie-modal h2 { font-size: 1.8rem; margin: 0; }
.icon-btn { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: none; cursor: pointer; }
.icon-btn .icon { width: 18px; height: 18px; }
.cookie-opt { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; border-top: 1px solid var(--line); }
.cookie-opt h3 { font: 600 .95rem/1.3 var(--sans); color: var(--ink); margin-bottom: 4px; }
.cookie-opt p { margin: 0; font-size: .84rem; color: var(--muted); }
.switch-wrap { position: relative; flex: none; cursor: pointer; }
.switch-input { position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; z-index: 1; }
.switch { position: relative; display: block; width: 48px; height: 28px; border-radius: 999px; background: #cfd6d1; transition: background-color .3s; }
.switch span { position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); transition: transform .3s var(--ease); }
.switch-input:checked + .switch, .switch.is-locked { background: var(--green-800); }
.switch-input:checked + .switch span, .switch.is-locked span { transform: translateX(20px); }
.switch.is-locked { flex: none; opacity: .55; }
.switch-input:focus-visible + .switch { outline: 2px solid var(--gold-500); outline-offset: 3px; }
.cookie-modal-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line); }

/* ------------------------------------------------ página de procedimento */
.proc-hero { position: relative; padding: clamp(24px, 4vw, 48px) 0 clamp(48px, 6vw, 88px); overflow: hidden; }
.proc-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 90% 20%, rgba(176, 151, 79, .13), transparent 70%); pointer-events: none; }
.proc-hero-grid { position: relative; display: grid; gap: clamp(32px, 5vw, 72px); align-items: center; }
.crumbs { margin-bottom: clamp(24px, 4vw, 44px); font-size: .8rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--gold-500); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--green-800); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); }
.proc-title { font-size: clamp(2.6rem, 1.6rem + 4vw, 4.8rem); line-height: 1; letter-spacing: -.02em; margin-bottom: 22px; }
.proc-lead { max-width: 34em; font-size: clamp(1.04rem, 1rem + .3vw, 1.18rem); margin-bottom: 30px; }
.proc-facts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.proc-facts li { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--ink); }
.proc-facts .icon { width: 18px; height: 18px; color: var(--gold-600); }
.proc-hero-media { position: relative; width: 100%; aspect-ratio: 4 / 3.3; overflow: hidden; border-radius: 999px 999px var(--radius) var(--radius); box-shadow: var(--shadow); }
.proc-hero-media > img, .proc-hero-media .art { width: 100%; height: 100%; object-fit: cover; }
.proc-hero-media::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255, 255, 255, .55); border-radius: inherit; pointer-events: none; }
@media (max-width: 599px) { .proc-hero-media { border-radius: 200px 200px var(--radius) var(--radius); } }
@media (min-width: 960px) {
  .proc-hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
  .proc-hero-media { aspect-ratio: 4 / 4.4; }
}

.proc-body { background: var(--paper); }
.proc-layout { display: grid; gap: clamp(40px, 5vw, 72px); align-items: start; }
.proc-article { min-width: 0; }
.proc-block { padding-bottom: clamp(36px, 4vw, 52px); margin-bottom: clamp(36px, 4vw, 52px); border-bottom: 1px solid var(--line); }
.proc-block h2 { font-size: clamp(1.8rem, 1.5rem + 1.2vw, 2.5rem); margin-bottom: 18px; }
.proc-block > p { max-width: 40em; font-size: 1.03rem; }
.tick-list { display: grid; gap: 12px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; color: var(--ink); }
.tick-list .icon { width: 22px; height: 22px; margin-top: 2px; padding: 3px; border-radius: 50%; background: var(--gold-100); color: var(--gold-700); }
.mini-steps { display: grid; gap: 0; }
.mini-steps li { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line); }
.mini-n { font: italic 500 1.6rem/1 var(--serif); color: var(--gold-600); }
.mini-steps h3 { font-size: 1.3rem; margin-bottom: 4px; }
.mini-steps p { margin: 0; color: var(--muted); }
@media (min-width: 720px) { .mini-steps { grid-template-columns: 1fr 1fr; column-gap: 32px; } }
.proc-two { display: grid; gap: 36px; }
.proc-two h2 { font-size: clamp(1.6rem, 1.4rem + .8vw, 2.1rem); }
@media (min-width: 720px) { .proc-two { grid-template-columns: 1fr 1fr; gap: 48px; } }
.dot-list { display: grid; gap: 12px; }
.dot-list li { position: relative; padding-left: 22px; }
.dot-list li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 7px; height: 7px; background: var(--gold-500); transform: rotate(45deg); }
.callout { display: flex; gap: 16px; margin: 0 0 clamp(36px, 4vw, 52px); padding: 22px 24px; background: var(--gold-100); border-left: 2px solid var(--gold-500); border-radius: 0 var(--radius) var(--radius) 0; }
.callout > .icon { width: 24px; height: 24px; color: var(--gold-700); margin-top: 2px; }
.callout-title { margin: 0 0 4px; font: 600 .7rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-700); }
.callout p:last-child { margin: 0; color: var(--ink); }
.proc-disclaimer { margin-top: 28px; font-size: .82rem; color: var(--muted); }
.proc-aside { display: grid; gap: 20px; }
.aside-card { padding: 28px; background: var(--green-900); color: rgba(251, 248, 241, .8); border-radius: var(--radius); }
.aside-kicker { margin-bottom: 6px; font: 600 .66rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-400); }
.aside-title { margin-bottom: 12px; font: 500 1.9rem/1.1 var(--serif); color: var(--ivory); }
.aside-card > p:not(.aside-kicker):not(.aside-title) { font-size: .92rem; margin-bottom: 20px; }
.aside-info { display: grid; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-dark); font-size: .86rem; }
.aside-info li { display: flex; gap: 10px; align-items: flex-start; }
.aside-info .icon { width: 18px; height: 18px; color: var(--gold-400); margin-top: 2px; }
.aside-info a { color: var(--ivory); text-decoration: none; }
.aside-person { display: grid; grid-template-columns: 72px 1fr; gap: 16px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory); }
.aside-person img { width: 72px; height: 72px; object-fit: cover; object-position: 50% 18%; border-radius: 50%; }
.aside-person p { margin: 0; font-size: .84rem; line-height: 1.45; color: var(--muted); }
.aside-person .aside-person-name { font: 600 1.2rem/1.2 var(--serif); color: var(--ink); margin-bottom: 2px; }
@media (min-width: 1024px) {
  .proc-layout { grid-template-columns: minmax(0, 1fr) 340px; }
  .proc-aside { position: sticky; top: calc(var(--header-h) + 24px); }
}

.related { background: var(--cream); }
.card-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
.proc-card { position: relative; display: flex; flex-direction: column; height: 100%; min-height: 220px; padding: 26px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; overflow: hidden; transition: border-color .4s, transform .5s var(--ease), box-shadow .5s var(--ease); }
.proc-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--gold-500); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.proc-card-cat { font: 600 .64rem/1.2 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold-700); }
.proc-card-name { margin: 12px 0 8px; font: 600 1.6rem/1.12 var(--serif); color: var(--ink); }
.proc-card-desc { font-size: .9rem; line-height: 1.55; color: var(--muted); }
.proc-card-go { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 20px; font: 600 .72rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--green-800); }
.proc-card-go .icon { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.proc-card:hover { border-color: var(--gold-300); transform: translateY(-4px); box-shadow: var(--shadow); }
.proc-card:hover::before { transform: scaleX(1); }
.proc-card:hover .proc-card-go .icon { transform: translateX(4px); }

.cta-band { position: relative; overflow: hidden; background: var(--green-900); color: var(--ivory); padding-block: clamp(56px, 7vw, 96px); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 100% 50%, rgba(176, 151, 79, .18), transparent 70%); }
.cta-band-inner { position: relative; display: grid; justify-items: start; gap: 24px; }
.cta-band-mark { width: 64px; filter: brightness(1.4) saturate(.8); }
.cta-band-title { margin: 0; max-width: 18em; font: 500 clamp(2rem, 1.4rem + 2.4vw, 3.2rem)/1.1 var(--serif); color: var(--ivory); text-wrap: balance; }
.cta-band-title em { color: var(--gold-400); }
@media (min-width: 960px) { .cta-band-inner { grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; } }

/* ---------------------------------------------- páginas internas simples */
.page-hero { position: relative; padding: clamp(28px, 4vw, 52px) 0 clamp(40px, 5vw, 72px); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 70% at 95% 10%, rgba(176, 151, 79, .13), transparent 70%); pointer-events: none; }
.page-hero > .container { position: relative; }
.page-hero-sm { padding-bottom: 24px; }
.page-title { font-size: clamp(2.6rem, 1.6rem + 4vw, 4.6rem); line-height: 1; letter-spacing: -.02em; margin-bottom: 18px; }
.page-lead { max-width: 38em; font-size: 1.08rem; color: var(--ink-2); }
.jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.jump a { padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: .86rem; text-decoration: none; color: var(--ink); background: var(--paper); transition: background-color .3s, border-color .3s, color .3s; }
.jump a:hover { background: var(--green-800); border-color: var(--green-800); color: var(--ivory); }
.list-cat { padding-block: clamp(44px, 5vw, 72px); border-top: 1px solid var(--line); }
.list-cat:nth-of-type(even) { background: var(--paper); }
.list-cat-grid { display: grid; gap: 28px; }
.list-cat-num { margin: 0 0 8px; font: italic 500 1.4rem/1 var(--serif); color: var(--gold-600); }
.list-cat-head h2 { margin-bottom: 12px; }
.list-cat-head p { color: var(--muted); max-width: 26em; }
@media (min-width: 1024px) {
  .list-cat-grid { grid-template-columns: 300px 1fr; gap: 56px; }
  .list-cat-head { position: sticky; top: calc(var(--header-h) + 28px); align-self: start; }
  .list-cat .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) { .list-cat .card-grid { grid-template-columns: repeat(3, 1fr); } }

.legal { background: var(--paper); padding-top: clamp(40px, 5vw, 64px); }
.legal-body h2 { font-size: clamp(1.6rem, 1.4rem + .9vw, 2.1rem); margin: 44px 0 14px; }
.legal-body h3 { font: 600 1rem/1.4 var(--sans); color: var(--ink); margin: 22px 0 8px; }
.legal-body ul { display: grid; gap: 8px; margin: 0 0 1em; }
.legal-body ul li { position: relative; padding-left: 20px; }
.legal-body ul li::before { content: ""; position: absolute; left: 2px; top: .7em; width: 6px; height: 6px; background: var(--gold-500); transform: rotate(45deg); }
.legal-body a, .legal-body .link-btn { color: var(--green-800); }
.legal-body code { padding: 1px 6px; border-radius: 3px; background: var(--cream); font-size: .88em; }

.notfound { padding-block: clamp(56px, 8vw, 120px); }
.notfound-mark { width: 120px; margin-bottom: 28px; animation: flutter 6s ease-in-out infinite; }

/* ------------------------------------------------------------ animações */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s); }
.js [data-reveal="fade"] { transform: none; transition-duration: 1.4s; }
.js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .wa-float, .cookie-bar, .marquee, .map { display: none !important; }
}
