/* Ateliê da Pele — site fictício de demonstração da NeuralWeb.
   CSS puro, sem build. Celular primeiro (360 px) e depois telas maiores.
   Assinatura visual: arcos (janelas do ateliê), serifa Bodoni, porcelana, rosé e cacau. */

:root {
  --bg: #fbf7f3;
  --sand: #f4ebe4;
  --blush: #f0b7b0;
  --blush-2: #f7d6d1;
  --blush-3: #fcebe7;
  --rose: #9b4a42;
  --ink: #2b1d19;
  --text: #3b2b26;
  --muted: #6d5751;
  --line: #eadcd4;
  --line-2: #dccabf;
  --field: #9a8078;
  --dark: #241815;
  --on-dark: #f6ede9;
  --on-dark-2: #cbb6ae;
  --nw-bg: #0a0d13;
  --nw-txt: #d3dbe6;
  --nw-back: #e8eef6;
  --nw-ac: #7ec4ff;
  --bar-h: 44px;
  --hdr-h: 64px;
  --pad: clamp(16px, 5vw, 48px);
  --r: 22px;
  --ease: cubic-bezier(.22, .7, .2, 1);
  --serif: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Jost", "Futura", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
@media (min-width: 1080px) { :root { --hdr-h: 76px; } }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%; text-size-adjust: 100%;
  scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + var(--hdr-h) + 16px);
}
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 400 16.5px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; overflow-x: clip;
}
body.is-locked { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, address, fieldset { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button, input, select { font: inherit; color: inherit; }
::selection { background: var(--blush); color: var(--ink); }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 4px; }
.nw-bar :focus-visible, .sec--dark :focus-visible, .ftr :focus-visible { outline-color: var(--blush); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.i { width: 22px; height: 22px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.i--fill { fill: currentColor; stroke: none; }
.sr { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.nw { white-space: nowrap; }
.wrap { width: min(1240px, 100%); margin-inline: auto; padding-inline: var(--pad); }
.skip {
  position: fixed; left: 12px; top: -80px; z-index: 100; padding: 12px 16px; border-radius: 12px;
  background: var(--ink); color: var(--bg); font-weight: 500; text-decoration: none; transition: top .2s;
}
.skip:focus { top: calc(var(--bar-h) + 8px); }

/* Arco: metade de cima é um semicírculo perfeito para qualquer proporção (--ar = largura / altura) */
.arch-shape {
  border-radius: 50% 50% var(--rb, 18px) var(--rb, 18px) / calc(var(--ar, 1) * 50%) calc(var(--ar, 1) * 50%) var(--rb, 18px) var(--rb, 18px);
}
.arch { position: relative; overflow: hidden; isolation: isolate; aspect-ratio: var(--ar, 1); background: var(--sand); }
.arch > img, .arch__media, .arch__media img, .arch__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Faixa da NeuralWeb (demonstração) ---------- */
.nw-bar {
  position: fixed; inset: 0 0 auto; z-index: 90; height: var(--bar-h);
  display: flex; align-items: center; gap: 2px;
  padding-inline: max(4px, env(safe-area-inset-left)) max(4px, env(safe-area-inset-right));
  background: var(--nw-bg); color: var(--nw-txt); font: 500 12.5px/1.2 var(--sans); letter-spacing: .01em;
}
.nw-bar a {
  display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding-inline: 8px; flex: none;
  border-radius: 8px; text-decoration: none; white-space: nowrap; transition: background-color .2s;
}
.nw-bar a:hover { background: rgba(255, 255, 255, .07); }
.nw-bar__back { color: var(--nw-back); }
.nw-bar__txt { flex: 1; min-width: 0; text-align: center; white-space: nowrap; overflow: hidden; }
.nw-bar__cta { color: var(--nw-ac); font-weight: 600; }
.nw-bar .lg { display: none; }
@media (max-width: 374px) { .nw-bar { font-size: 12px; } .nw-bar a { padding-inline: 6px; } }
@media (min-width: 768px) {
  .nw-bar { gap: 8px; padding-inline: 16px; font-size: 13px; }
  .nw-bar .lg { display: inline; }
  .nw-bar .sm { display: none; }
}

/* ---------- Cabeçalho ---------- */
.hdr {
  position: fixed; left: 0; right: 0; top: var(--bar-h); z-index: 80; height: var(--hdr-h);
  background: rgba(251, 247, 243, .9);
  -webkit-backdrop-filter: saturate(1.4) blur(16px); backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid transparent;
  transition: transform .5s var(--ease), border-color .3s, box-shadow .3s;
}
.hdr.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 18px 40px -34px rgba(43, 29, 25, .55); }
.hdr.is-hidden { transform: translateY(calc(-100% - 20px)); }
.hdr__in { height: 100%; display: flex; align-items: center; gap: 12px; }

.logo { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; margin-right: auto; color: var(--ink); text-decoration: none; }
.logo__mark { width: 34px; height: 34px; flex: none; }
.logo__txt { font: 400 21px/1 var(--serif); letter-spacing: .005em; white-space: nowrap; }
.logo__txt em { color: var(--rose); }
.logo--light { color: var(--on-dark); }
.logo--light .logo__txt em { color: var(--blush); }

.nav, .hdr .hdr__cta { display: none; }
.burger {
  display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line-2); border-radius: 50%; flex: none;
  align-items: center; justify-content: center; flex-direction: column; gap: 6px;
  background: transparent; color: var(--ink); cursor: pointer; transition: background-color .3s, border-color .3s;
}
html.js .burger { display: inline-flex; }
.burger span { display: block; width: 18px; height: 1.5px; border-radius: 2px; background: currentColor; transition: transform .4s var(--ease); }
.burger[aria-expanded="true"] { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

@media (min-width: 600px) { .hdr .hdr__cta { display: inline-flex; } }
@media (min-width: 1080px) {
  .logo__mark { width: 38px; height: 38px; }
  .logo__txt { font-size: 23px; }
  .nav { display: flex; align-items: center; gap: 2px; margin-right: 8px; }
  .nav a {
    position: relative; padding: 10px 13px; font-size: 15px; font-weight: 500; letter-spacing: .02em; color: var(--text); text-decoration: none;
  }
  .nav a::after {
    content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 1px; background: var(--rose);
    transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
  }
  .nav a:hover::after, .nav a.is-on::after { transform: scaleX(1); }
  .nav a.is-on { color: var(--rose); }
  html.js .burger { display: none; }
}

/* Menu do celular */
.menu {
  position: fixed; left: 0; right: 0; bottom: 0; top: calc(var(--bar-h) + var(--hdr-h)); z-index: 79;
  display: flex; flex-direction: column;
  padding: 8px var(--pad) calc(28px + env(safe-area-inset-bottom));
  background: var(--bg); overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .35s var(--ease), transform .35s var(--ease); }
.menu nav { display: flex; flex-direction: column; }
.menu nav a {
  display: flex; align-items: baseline; gap: 16px; min-height: 58px; padding: 14px 0 12px; border-bottom: 1px solid var(--line);
  font: 400 1.75rem/1.1 var(--serif); color: var(--ink); text-decoration: none;
}
.menu nav a small { font: italic 400 .95rem/1 var(--serif); color: var(--rose); }
.menu__cta { margin-top: 28px; }
.menu__info { margin-top: 18px; font-size: 14px; color: var(--muted); text-align: center; }
@media (min-width: 1080px) { .menu { display: none; } }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border: 1px solid transparent; border-radius: 999px;
  font: 500 15px/1.2 var(--sans); letter-spacing: .03em; text-align: center; text-decoration: none; cursor: pointer;
  transition: background-color .3s, border-color .3s, color .3s, box-shadow .35s, transform .3s var(--ease);
}
.btn .i { width: 19px; height: 19px; }
.btn:active { transform: translateY(1px); }
.btn--sm { min-height: 44px; padding: 0 20px; font-size: 14.5px; }
.btn--block { width: 100%; }
.btn--ink { background: var(--ink); color: var(--bg); }
.btn--ink:hover { background: #4b312b; box-shadow: 0 16px 34px -18px rgba(43, 29, 25, .75); }
.btn--line { border-color: rgba(43, 29, 25, .32); color: var(--ink); background: transparent; }
.btn--line:hover { border-color: var(--ink); background: rgba(43, 29, 25, .04); }
.btn--blush { background: var(--blush); color: var(--ink); }
.btn--blush:hover { background: #f6cbc5; box-shadow: 0 16px 36px -18px rgba(240, 183, 176, .8); }

/* ---------- Textos de seção ---------- */
.sec { position: relative; padding-block: clamp(80px, 11vw, 136px); }
.sec--dark { background: var(--dark); color: var(--on-dark-2); }
.sec--blush { background: var(--blush-3); }
.sec--sand { background: var(--sand); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  font: 500 12px/1.2 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--rose);
}
.eyebrow::before { content: ""; width: 10px; height: 13px; flex: none; border: 1.5px solid currentColor; border-bottom: 0; border-radius: 6px 6px 0 0; }
.eyebrow--light { color: var(--blush); }
.h2 {
  font: 400 clamp(2.3rem, 7.6vw, 4rem)/1.04 var(--serif); letter-spacing: -.015em; color: var(--ink); text-wrap: balance;
}
.h2 em { color: var(--rose); }
.sec--dark .h2 { color: var(--on-dark); }
.sec--dark .h2 em { color: var(--blush); }
.lead { max-width: 56ch; margin-top: 18px; font-size: clamp(1.04rem, 1.4vw, 1.15rem); color: var(--muted); }
.sec--dark .lead { color: var(--on-dark-2); }
.sec-head { margin-bottom: clamp(44px, 7vw, 80px); }
.sec-head--center { max-width: 780px; margin-inline: auto; text-align: center; }
.sec-head--center .lead { margin-inline: auto; }
@media (min-width: 960px) {
  .sec-head--split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 64px; align-items: end; }
  .sec-head--split .lead { margin-top: 0; margin-bottom: 10px; }
}

/* ---------- Abertura (hero) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--bar-h) + var(--hdr-h) + 26px) 0 56px;
  background:
    radial-gradient(70% 45% at 92% 80%, rgba(240, 183, 176, .42), rgba(240, 183, 176, 0) 70%),
    radial-gradient(45% 35% at 0% 62%, rgba(240, 183, 176, .16), rgba(240, 183, 176, 0) 70%),
    var(--bg);
}
.hero__grid { display: grid; gap: 36px; }
.hero__title {
  font: 400 clamp(2.65rem, 11.4vw, 5.2rem)/.98 var(--serif); letter-spacing: -.025em; color: var(--ink); text-wrap: balance;
}
.hero__title em { color: var(--rose); }
.hero__lead { max-width: 34ch; margin-top: 18px; font-size: clamp(1.06rem, 1.5vw, 1.2rem); line-height: 1.6; color: var(--muted); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero__ctas .btn { flex: 1 1 auto; padding-inline: 20px; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 6px 16px; margin-top: 24px; font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.hero__tags li { display: inline-flex; align-items: center; gap: 9px; }
.hero__tags li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blush); box-shadow: 0 0 0 3px rgba(240, 183, 176, .3); }

@media (max-width: 374px) {
  .hero__ctas .btn { padding-inline: 15px; font-size: 14.5px; gap: 8px; }
  .hero__tags { gap: 6px 12px; letter-spacing: .06em; }
}
.hero__frame { --ar: .92; --rb: 22px; position: relative; }
.hero__line {
  position: absolute; inset: 0; transform: translate(-9px, -9px); pointer-events: none;
  border: 1px solid rgba(155, 74, 66, .38);
}
.arch--hero { background: #2a1c18; box-shadow: 0 40px 70px -50px rgba(43, 29, 25, .7); }
.hero__poster, .hero__video { object-position: 50% 58%; }
.hero__video { opacity: 0; transition: opacity .6s linear; }
.hero__video.is-on { opacity: 1; }
.hero__video.is-on.is-fading { opacity: 0; }
.hero__card {
  position: absolute; left: 12px; bottom: 12px; max-width: calc(100% - 24px);
  display: flex; align-items: center; gap: 12px; padding: 10px 16px 10px 10px; border-radius: 18px;
  background: rgba(251, 247, 243, .92); color: var(--ink);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px -22px rgba(43, 29, 25, .6);
}
.hero__card-ico { display: grid; place-items: center; width: 40px; height: 44px; flex: none; border-radius: 20px 20px 8px 8px; background: var(--blush-2); color: var(--rose); }
.hero__card p { display: flex; flex-direction: column; line-height: 1.3; }
.hero__card b { font: 500 1.02rem/1.25 var(--serif); }
.hero__card span { font-size: 13px; color: var(--muted); }
.hero__note { margin-top: 10px; font-size: 12px; letter-spacing: .04em; color: var(--muted); text-align: right; }

/* Entrada do topo em CSS (não depende do JavaScript; começa quase invisível para o topo ser medido na hora) */
@keyframes rise { from { opacity: .01; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes settle { from { opacity: .01; transform: scale(1.07); } to { opacity: 1; transform: none; } }
@keyframes draw { from { opacity: 0; transform: translate(0, 0); } to { opacity: 1; } }
.hero__text > * { animation: rise .95s var(--ease) both; }
.hero__text > :nth-child(2) { animation-delay: .08s; }
.hero__text > :nth-child(3) { animation-delay: .16s; }
.hero__text > :nth-child(4) { animation-delay: .24s; }
.hero__text > :nth-child(5) { animation-delay: .32s; }
.arch--hero .arch__media { animation: settle 1.6s var(--ease) .05s both; }
.hero__line { animation: draw 1.4s var(--ease) .5s both; }
.hero__card { animation: rise .9s var(--ease) .7s both; }

@media (min-width: 701px) {
  .hero__frame { --ar: 1.35; }
  .hero__poster, .hero__video { object-position: 54% 45%; }
  .hero__card { left: 18px; bottom: 18px; }
  .hero__ctas .btn { flex: 0 0 auto; padding-inline: 28px; }
}
@media (min-width: 960px) {
  .hero { display: grid; align-content: center; min-height: 100vh; min-height: 100svh; padding: calc(var(--bar-h) + var(--hdr-h) + 36px) 0 44px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(40px, 5vw, 80px); align-items: center; }
  .hero__title { font-size: clamp(3.4rem, 6.2vw, 5.2rem); }
  .hero__lead { margin-top: 24px; }
  .hero__ctas { margin-top: 34px; }
  .hero__tags { margin-top: 34px; }
  .hero__frame { --ar: .88; width: min(100%, calc((100vh - 236px) * .88)); width: min(100%, calc((100svh - 236px) * .88)); margin-left: auto; }
  .hero__line { transform: translate(-16px, -16px); }
  .hero__poster, .hero__video { object-position: 55% 50%; }
  .hero__card { left: -34px; bottom: 44px; max-width: 300px; padding: 12px 20px 12px 12px; }
  .hero__note { width: min(100%, calc((100svh - 236px) * .88)); margin-left: auto; }
}

/* ---------- Faixa dos protocolos ---------- */
.ribbon { overflow: hidden; background: var(--blush); color: var(--ink); }
.ribbon__track { display: flex; width: max-content; animation: marquee 56s linear infinite; }
.ribbon ul { display: flex; flex: none; }
.ribbon li {
  display: flex; align-items: center; gap: 30px; padding: 17px 15px;
  font: italic 400 clamp(1.2rem, 2.4vw, 1.65rem)/1.1 var(--serif); white-space: nowrap;
}
.ribbon li::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--rose); opacity: .7; }
.ribbon:hover .ribbon__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Protocolos ---------- */
.pblock { display: grid; gap: 26px; }
.pblock + .pblock { margin-top: clamp(80px, 11vw, 140px); }
.pblock__title { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--ink); }
.pblock__title h3 { font: italic 400 clamp(2.5rem, 9vw, 3.8rem)/1 var(--serif); letter-spacing: -.01em; color: var(--ink); }
.pblock__title p { max-width: 24ch; text-wrap: balance; font-size: 12px; font-weight: 500; letter-spacing: .16em; line-height: 1.5; text-transform: uppercase; color: var(--muted); text-align: right; }
.pblock__fig { position: relative; }
.pblock__fig figcaption { margin-top: 10px; font-size: 12px; letter-spacing: .04em; color: var(--muted); }
.arch--facial { --ar: 1.2; --rb: 22px; }
.arch--facial img { object-position: 50% 32%; }
.arch--round { aspect-ratio: 1.69; border-radius: 999px; }
.arch--round img { object-position: 50% 50%; }

.proto { display: grid; grid-template-columns: 36px minmax(0, 1fr); column-gap: 12px; padding: 26px 0 18px; border-bottom: 1px solid var(--line-2); }
.proto__n { padding-top: 5px; font: italic 400 1.05rem/1.4 var(--serif); color: var(--rose); }
.proto h4 { font: 500 1.45rem/1.2 var(--serif); letter-spacing: -.005em; color: var(--ink); }
.proto__body > p { margin-top: 8px; font-size: .99rem; color: var(--muted); }
.proto__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 14px; font-size: 13.5px; color: var(--text); }
.proto__meta li { display: inline-flex; align-items: center; gap: 7px; }
.proto__meta .i { width: 17px; height: 17px; color: var(--rose); }
.proto__link {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; margin-top: 4px;
  font-size: 14.5px; font-weight: 500; letter-spacing: .02em; color: var(--ink);
  text-decoration: underline; text-decoration-color: var(--blush); text-decoration-thickness: 2px; text-underline-offset: 6px;
  transition: color .25s, text-decoration-color .25s;
}
.proto__link .i { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.proto__link:hover { color: var(--rose); text-decoration-color: var(--rose); }
.proto__link:hover .i { transform: translateX(4px); }

.protos__note {
  display: flex; gap: 14px; align-items: flex-start; max-width: 860px; margin: clamp(56px, 8vw, 96px) auto 0;
  padding: 22px 22px; border-radius: var(--r); background: var(--blush-3); color: var(--text); font-size: .98rem;
}
.protos__note .i { width: 24px; height: 24px; margin-top: 1px; color: var(--rose); }

@media (min-width: 640px) {
  .proto { grid-template-columns: 52px minmax(0, 1fr); padding: 30px 0 22px; }
  .proto__n { font-size: 1.2rem; }
  .proto h4 { font-size: 1.6rem; }
}
@media (min-width: 960px) {
  .pblock {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); grid-template-rows: auto 1fr;
    grid-template-areas: "fig title" "fig list"; column-gap: clamp(48px, 6vw, 96px); row-gap: 8px;
  }
  .pblock--rev { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); grid-template-areas: "title fig" "list fig"; }
  .pblock__title { grid-area: title; }
  .pblock__list { grid-area: list; }
  .pblock__fig { grid-area: fig; align-self: start; position: sticky; top: calc(var(--bar-h) + var(--hdr-h) + 28px); }
  .arch--facial { --ar: .82; }
  .proto:last-child { border-bottom: 0; }
}

/* ---------- Avaliação ---------- */
.aval { overflow: hidden; }
.aval::before {
  content: ""; position: absolute; width: 820px; height: 820px; right: -360px; top: -360px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(240, 183, 176, .13), rgba(240, 183, 176, 0));
}
.aval .wrap { position: relative; }
.aval__top { display: grid; gap: 44px; }
.aval__facts { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid rgba(240, 183, 176, .2); }
.aval__facts div { display: grid; grid-template-columns: 112px 1fr; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(240, 183, 176, .2); }
.aval__facts dt { font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--blush); padding-top: 3px; }
.aval__facts dd { color: var(--on-dark); }
.aval__pics { position: relative; }
.aval__pics::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; aspect-ratio: 900 / 560; transform: translate(10px, -10px);
  border: 1px solid rgba(240, 183, 176, .4); border-radius: 26px; pointer-events: none;
}
.aval__main { position: relative; overflow: hidden; border-radius: 26px; background: #1a110f; }
.aval__main img { width: 100%; height: auto; aspect-ratio: 900 / 560; object-fit: cover; }
.aval__pics figcaption { margin-top: 10px; font-size: 12px; color: var(--on-dark-2); }

.steps { display: grid; margin-top: clamp(56px, 8vw, 96px); }
.step { position: relative; display: grid; grid-template-columns: 52px minmax(0, 1fr); align-content: start; gap: 18px; padding-bottom: 34px; }
.step:last-child { padding-bottom: 0; }
.step::before { content: ""; position: absolute; left: 26px; top: 70px; bottom: 10px; width: 1px; background: linear-gradient(rgba(240, 183, 176, .5), rgba(240, 183, 176, .08)); }
.step:last-child::before { display: none; }
.step__n {
  display: grid; place-items: center; width: 52px; height: 60px; padding-top: 4px;
  border: 1px solid rgba(240, 183, 176, .6); border-radius: 26px 26px 10px 10px;
  font: italic 400 1.6rem/1 var(--serif); color: var(--blush);
}
.step h3 { padding-top: 4px; font: 400 1.5rem/1.2 var(--serif); color: var(--on-dark); }
.step p { margin-top: 8px; font-size: .98rem; }
.aval__foot {
  display: grid; gap: 22px; margin-top: clamp(52px, 7vw, 80px); padding: 26px 22px;
  border: 1px solid rgba(240, 183, 176, .28); border-radius: 26px; background: rgba(240, 183, 176, .06);
}
.aval__foot h3 { font: 400 1.4rem/1.25 var(--serif); color: var(--on-dark); }
.aval__foot p { margin-top: 8px; max-width: 62ch; }
.aval__foot .btn { justify-self: start; }
@media (min-width: 960px) {
  .aval__top { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 72px; align-items: center; }
  .aval__pics::before { transform: translate(16px, -16px); }
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
  .step { grid-template-columns: 1fr; gap: 0; padding-bottom: 0; }
  .step::before { left: 70px; right: -18px; top: 30px; bottom: auto; width: auto; height: 1px; background: linear-gradient(90deg, rgba(240, 183, 176, .5), rgba(240, 183, 176, .06)); }
  .step:last-child::before { display: none; }
  .step__n { margin-bottom: 22px; }
  .aval__foot { grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; padding: 32px 36px; }
}

/* ---------- Sobre: espaço e equipe ---------- */
.sobre__grid { display: grid; gap: 44px; }
.gallery { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr); grid-template-areas: "a b" "c c" "n n"; gap: 12px; align-items: end; }
.sobre__head .h2 { font-size: clamp(2.3rem, 7.6vw, 3.45rem); }
.g--cabine { grid-area: a; }
.g--luz { grid-area: b; }
.g--card { grid-area: c; }
.g__note { grid-area: n; font-size: 12px; color: var(--muted); }
.g__frame { position: relative; overflow: hidden; background: var(--sand); }
.g__frame img { width: 100%; height: 100%; object-fit: cover; }
.g--cabine .g__frame { --ar: .76; --rb: 18px; aspect-ratio: .76; }
.g--luz .g__frame { aspect-ratio: 1.1; border-radius: 18px 18px 80px 18px; }
.g--luz img { object-position: 30% 40%; }
.g figcaption { margin-top: 8px; font-size: 12.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.g--card {
  padding: 22px 22px; border-radius: 22px; background: var(--blush-2); color: var(--ink);
  font: 400 1.18rem/1.4 var(--serif);
}
.g--card b { font-weight: 500; font-style: italic; color: var(--rose); }

.feats { display: grid; gap: 24px; margin-top: clamp(56px, 8vw, 96px); padding-top: clamp(40px, 5vw, 56px); border-top: 1px solid var(--line-2); }
.feat { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 16px; align-items: start; align-content: start; }
.feat__ico { display: grid; place-items: center; width: 48px; height: 56px; border-radius: 24px 24px 10px 10px; background: var(--blush-3); color: var(--rose); }
.feat h3 { font: 500 1.22rem/1.25 var(--serif); color: var(--ink); }
.feat p { margin-top: 6px; font-size: .96rem; color: var(--muted); }

.team { margin-top: clamp(80px, 11vw, 136px); }
.team__head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 52px); }
.team__title { font: 400 clamp(2rem, 6vw, 3rem)/1.08 var(--serif); letter-spacing: -.01em; color: var(--ink); }
.team__title em { color: var(--rose); }
.team__list { display: grid; gap: 14px; }
.pro {
  display: grid; grid-template-columns: 60px minmax(0, 1fr); gap: 18px; align-items: start; align-content: start;
  padding: 22px 20px; border: 1px solid var(--line); border-radius: 26px; background: #fff;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.pro:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -38px rgba(43, 29, 25, .5); }
.pro__ph {
  --ar: .8; --rb: 10px; display: grid; place-items: center; width: 60px; height: 75px;
  background: linear-gradient(165deg, var(--blush-2), var(--blush-3)); color: var(--rose);
}
.pro__ph .i { width: 26px; height: 26px; }
.pro h4 { font: 400 1.4rem/1.2 var(--serif); color: var(--ink); }
.pro__area { margin-top: 4px; font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--rose); }
.pro__txt > p:not([class]) { margin-top: 10px; font-size: .96rem; color: var(--muted); }
.pro__reg { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line-2); font-size: 13px; color: var(--text); }
.reg {
  display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; padding: 16px 18px;
  border-radius: 18px; background: var(--sand); font-size: .93rem; color: var(--text);
}
.reg .i { width: 22px; height: 22px; color: var(--rose); }
.reg b { display: block; font-weight: 500; color: var(--ink); }

@media (min-width: 600px) {
  .feats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 28px; }
}
@media (min-width: 760px) {
  .team__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .pro { grid-template-columns: 1fr; gap: 0; padding: 30px 26px 28px; }
  .pro__ph { width: 72px; height: 90px; margin-bottom: 22px; }
  .reg b { display: inline; margin-right: 6px; }
}
@media (min-width: 960px) {
  .sobre__grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 80px; align-items: center; }
  .gallery { grid-template-areas: "a b" "a c" "n n"; column-gap: 16px; row-gap: 16px; }
  .g--cabine .g__frame { --ar: .64; aspect-ratio: .64; }
  .g--card { align-self: end; }
  .feats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feat { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Cuidados ---------- */
.care { display: grid; gap: 14px; }
.care__col { padding: 26px 22px 28px; border-radius: 26px; background: rgba(255, 255, 255, .72); border: 1px solid rgba(155, 74, 66, .12); }
.care__col--alert { background: #fff; border-color: rgba(155, 74, 66, .38); }
.care__col h3 { display: flex; align-items: center; gap: 14px; font: 400 1.38rem/1.25 var(--serif); color: var(--ink); }
.care__ico { display: grid; place-items: center; width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--blush-2); color: var(--rose); }
.care__col--alert .care__ico { background: var(--ink); color: var(--blush); }
.care__col ul { display: grid; gap: 12px; margin-top: 20px; }
.care__col li { position: relative; padding-left: 22px; font-size: .97rem; color: var(--text); }
.care__col li::before { content: ""; position: absolute; left: 1px; top: .6em; width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--rose); }
.care__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 24px; margin-top: 28px; }
.care__foot p { max-width: 60ch; color: var(--text); font-size: .98rem; }
@media (min-width: 900px) {
  .care { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .care__col { padding: 32px 28px 34px; }
}

/* ---------- Perguntas frequentes ---------- */
.faq-wrap { max-width: 900px; }
.faq { border-top: 1px solid var(--line-2); }
.qa { border-bottom: 1px solid var(--line-2); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; padding: 18px 0;
  font: 400 clamp(1.16rem, 2.4vw, 1.42rem)/1.3 var(--serif); color: var(--ink); cursor: pointer; list-style: none;
  transition: color .25s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: ""; flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-2);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 3v10M3 8h10' fill='none' stroke='%232b1d19' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E") center / 13px no-repeat;
  transition: transform .4s var(--ease), background-color .3s, border-color .3s;
}
.qa[open] summary::after { transform: rotate(45deg); background-color: var(--blush-2); border-color: var(--blush-2); }
.qa summary:hover { color: var(--rose); }
.qa__a { padding: 0 52px 24px 0; color: var(--muted); }
.faq__more { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 20px; margin-top: 40px; text-align: center; }
.faq__more p { font: italic 400 1.2rem/1.3 var(--serif); color: var(--ink); }

/* ---------- Agendamento ---------- */
.ag { overflow: hidden; }
.ag::before {
  content: ""; position: absolute; width: 900px; height: 900px; left: -420px; bottom: -520px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(closest-side, rgba(240, 183, 176, .14), rgba(240, 183, 176, 0));
}
.ag__grid { position: relative; display: grid; gap: 40px; }
.ag__list { display: grid; gap: 4px; margin-top: 28px; }
.ag__list li { display: flex; align-items: center; gap: 12px; min-height: 44px; }
.ag__list .i { width: 21px; height: 21px; color: var(--blush); }
.ag__list a {
  display: inline-flex; align-items: center; min-height: 44px; color: var(--on-dark); font-weight: 500;
  text-decoration: underline; text-decoration-color: rgba(240, 183, 176, .7); text-decoration-thickness: 1.5px; text-underline-offset: 5px;
}
.builder {
  padding: 26px 20px 22px; border-radius: 28px; background: var(--bg); color: var(--text);
  box-shadow: 0 50px 90px -50px rgba(0, 0, 0, .75);
}
.field { display: grid; gap: 8px; min-width: 0; margin: 0 0 20px; padding: 0; border: 0; }
.field label, .field legend { padding: 0; font-size: .95rem; font-weight: 500; color: var(--ink); }
.field legend { margin-bottom: 8px; }
.field select {
  width: 100%; min-height: 52px; padding: 12px 46px 12px 16px; border: 1px solid var(--field); border-radius: 14px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m3.5 6 4.5 4.5L12.5 6' fill='none' stroke='%232b1d19' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 16px center / 15px no-repeat;
  color: var(--ink); font-size: 16px; line-height: 1.3; -webkit-appearance: none; appearance: none; cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.field select:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(240, 183, 176, .5); }
.chips { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.chip { position: relative; display: block; }
.chip input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.chip span {
  display: grid; place-items: center; min-height: 48px; padding: 0 6px; border: 1px solid var(--field); border-radius: 999px;
  font-size: .95rem; font-weight: 500; color: var(--ink); transition: background-color .2s, border-color .2s, color .2s;
}
.chip input:hover + span { border-color: var(--ink); }
.chip input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.chip input:focus-visible + span { outline: 2px solid var(--rose); outline-offset: 2px; }
.builder__preview { margin: 4px 0 18px; padding: 16px 14px 18px; border-radius: 20px; background: #efe6df; }
.builder__label { margin-bottom: 10px; font-size: 11.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.bubble {
  position: relative; margin-left: auto; width: fit-content; max-width: 94%; padding: 11px 14px 12px;
  border-radius: 16px 0 16px 16px; background: #d9fdd3; color: #1f2a24;
  font-size: 15px; line-height: 1.5; white-space: pre-line; box-shadow: 0 1px 1px rgba(0, 0, 0, .08);
}
/* "rabinho" do balão, como numa mensagem enviada */
.bubble::after {
  content: ""; position: absolute; top: 0; right: -8px; width: 0; height: 0;
  border-style: solid; border-width: 0 0 10px 8px; border-color: transparent transparent transparent #d9fdd3;
}
.builder__note { display: flex; gap: 10px; margin-top: 16px; font-size: .84rem; line-height: 1.55; color: var(--muted); }
.builder__note .i { width: 18px; height: 18px; margin-top: 2px; color: var(--rose); }
html:not(.js) .builder__controls { display: none; }
@media (min-width: 640px) { .builder { padding: 34px 32px 28px; } }
@media (min-width: 1000px) {
  .ag__grid { grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); gap: 80px; align-items: center; }
}

/* ---------- Localização ---------- */
.loc { display: grid; gap: 40px; }
.loc__addr { display: flex; gap: 12px; margin-top: 26px; font-style: normal; font-size: 1.08rem; line-height: 1.6; color: var(--ink); }
.loc__addr .i { width: 24px; height: 24px; margin-top: 2px; color: var(--rose); }
.hours { margin-top: 26px; border-top: 1px solid var(--line-2); }
.hours div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-2); }
.hours dt { color: var(--muted); }
.hours dd { font-weight: 500; color: var(--ink); text-align: right; }
.loc__hint { margin-top: 14px; font: italic 400 1.08rem/1.4 var(--serif); color: var(--rose); }
.loc__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.loc__ctas .btn { flex: 1 1 auto; }
.map { position: relative; overflow: hidden; border: 1px solid var(--line-2); border-radius: 30px; background: #fdfaf7; box-shadow: 0 40px 70px -56px rgba(43, 29, 25, .6); }
.map__svg { width: 100%; height: auto; aspect-ratio: 4 / 5; } /* no celular o mapa aproxima (recorte à direita) para os rótulos ficarem legíveis */
.map figcaption {
  position: absolute; left: 14px; top: 14px; padding: 5px 12px; border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(253, 250, 247, .94); color: var(--muted); font-size: 12px; font-weight: 500;
}
.map__pulse { opacity: .35; transform-box: fill-box; transform-origin: center; animation: pulse 3s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.3); opacity: .55; } 100% { transform: scale(1.5); opacity: 0; } }
@media (min-width: 640px) {
  .map__svg { aspect-ratio: 600 / 480; }
  .loc__ctas .btn { flex: 0 0 auto; }
}
@media (min-width: 960px) {
  .loc { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 80px; align-items: center; }
}

/* ---------- Rodapé ---------- */
.ftr { padding: 72px 0 calc(96px + env(safe-area-inset-bottom)); background: var(--dark); color: var(--on-dark-2); font-size: .95rem; }
.ftr__top { display: grid; gap: 36px; }
.ftr__brand .logo__mark { width: 42px; height: 42px; }
.ftr__brand .logo__txt { font-size: clamp(1.9rem, 6vw, 2.5rem); }
.ftr__brand p { max-width: 38ch; margin-top: 16px; }
.ftr__h { margin-bottom: 6px; font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--blush); }
.ftr__nav a, .ftr__contact a {
  display: inline-flex; align-items: center; min-height: 44px; color: var(--on-dark); text-decoration: none; transition: color .2s;
}
.ftr__nav a:hover, .ftr__contact a:hover { color: var(--blush); }
.ftr__contact li:not(:first-child) { padding: 8px 0; }
.ftr__legal { display: grid; gap: 10px; margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(240, 183, 176, .16); font-size: .88rem; }
.ftr__reg { display: flex; align-items: center; gap: 10px; color: var(--on-dark); font-weight: 500; }
.ftr__reg .i { width: 20px; height: 20px; color: var(--blush); }
.ftr__demo {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0 16px; margin-top: 26px; padding: 4px 16px;
  border: 1px solid rgba(255, 255, 255, .09); border-radius: 16px; background: rgba(255, 255, 255, .04); font-size: .88rem;
}
.ftr__demo p { padding: 10px 0; }
.ftr__demo a { display: inline-flex; align-items: center; min-height: 44px; color: var(--nw-ac); font-weight: 500; text-decoration: none; }
.ftr__demo a:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 900px) {
  .ftr { padding-bottom: 44px; }
  .ftr__top { grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; }
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; z-index: 70; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom));
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .75), 0 4px 12px rgba(0, 0, 0, .14);
  transition: transform .45s var(--ease), opacity .3s, visibility .3s;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float:focus-visible { outline-color: var(--ink); }
html.js .wa-float:not(.is-on) { opacity: 0; visibility: hidden; transform: translateY(16px) scale(.85); }

/* ---------- Revelação ao rolar (só com JavaScript) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }
html.js .pro.reveal.is-in { transition: opacity .9s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease); }

/* ---------- Movimento reduzido: só as animações de entrada saem; vídeo, faixa e mapa continuam ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__text > *, .arch--hero .arch__media, .hero__line, .hero__card { animation: none; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Navegadores antigos sem aspect-ratio: o arco mantém a altura ---------- */
@supports not (aspect-ratio: 1) {
  .arch::before { content: ""; display: block; padding-top: calc(100% / var(--ar, 1)); }
  .arch--round::before { padding-top: 59.2%; }
}

/* ---------- Impressão ---------- */
@media print {
  .nw-bar, .hdr, .menu, .wa-float, .ribbon { display: none !important; }
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  .hero { padding-top: 24px; }
}
