/* =========================================================
   ORBYA Vila Carrão — by Diálogo
   Direção: luxo editorial quente · terracota + creme · serif display
   Paleta extraída do logotipo ORBYA.
   ========================================================= */

:root {
  /* === PALETA DA MARCA (do logotipo) === */
  --clay:      #a8543a;   /* terracota / argila — acento principal, CTAs */
  --clay-2:    #bd6b4c;
  --peach:     #d9a488;   /* pêssego do gradiente do logo */
  --cream:     #ece4d8;   /* fundo claro (creme/areia) */
  --cream-2:   #e3d9ca;   /* superfícies claras */
  --sand:      #d6cdbe;   /* bordas claras */
  --ink:       #1c1510;   /* fundo escuro (marrom quase preto) */
  --ink-2:     #251c15;   /* superfícies escuras */
  --ink-3:     #392c22;   /* bordas escuras */
  --text-dk:   #efe5d8;   /* texto sobre escuro */
  --dim-dk:    #b8a994;   /* texto secundário sobre escuro */
  --text-lt:   #2a211b;   /* texto sobre claro */
  --dim-lt:    #6e6051;   /* texto secundário sobre claro */
  --wa:        #1fae5a;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--cream); color: var(--text-lt);
  line-height: 1.6; font-weight: 400; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* ===== GRAIN ===== */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== TIPOGRAFIA ===== */
.eyebrow { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--clay); font-weight: 600; margin-bottom: 1.1rem; }
.section-title { font-family: var(--serif); font-weight: 300; font-size: clamp(1.9rem, 4.6vw, 3.4rem); line-height: 1.04; letter-spacing: -.01em; }
.section-title em { font-style: italic; color: var(--clay); }

/* ===== BOTÕES ===== */
.btn { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--sans); font-weight: 600; font-size: .92rem; padding: .95rem 1.6rem; border-radius: 999px; cursor: pointer; border: 1px solid transparent; transition: all .35s var(--ease); white-space: nowrap; }
.btn-primary { background: var(--clay); color: #fff; }
.btn-primary:hover { background: var(--clay-2); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(168,84,58,.6); }
.btn-line { border-color: currentColor; }
.btn-line:hover { background: currentColor; }
.btn-line:hover { color: var(--cream); }
.section-dark .btn-line, .hero .btn-line { color: var(--text-dk); }
.section-dark .btn-line:hover, .hero .btn-line:hover { background: var(--text-dk); color: var(--ink); }
.section-light .btn-line { color: var(--text-lt); }
.section-light .btn-line:hover { background: var(--text-lt); color: var(--cream); }
.btn-ghost { border-color: rgba(239,229,216,.3); color: var(--text-dk); }
.btn-ghost:hover { border-color: var(--clay); color: var(--peach); }
.btn-lg { padding: 1.15rem 2.2rem; font-size: 1.02rem; }

/* ===== HEADER ===== */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .4s var(--ease), backdrop-filter .4s var(--ease), box-shadow .4s var(--ease); padding-block: .35rem; }
.site-header.scrolled { background: rgba(28,21,16,.85); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(217,164,136,.18); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: .7rem; }
.brand-logo { height: 52px; width: auto; border-radius: 6px; }
.site-header .btn-ghost { padding: .7rem 1.2rem; }

/* ===== NAV ===== */
.site-nav { display: flex; gap: clamp(1rem, 2.2vw, 2.2rem); margin-inline: auto; }
.site-nav a { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--text-dk); opacity: .82; position: relative; padding-block: .3rem; transition: opacity .3s var(--ease); }
.site-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--clay); transition: width .3s var(--ease); }
.site-nav a:hover { opacity: 1; }
.site-nav a:hover::after { width: 100%; }
/* Destaque do Orbya Spaces (pílula pêssego) */
.site-nav a.nav-spaces { color: var(--ink); background: var(--peach); padding: .4rem .9rem; border-radius: 999px; opacity: 1; font-weight: 700; transition: background .3s var(--ease), transform .3s var(--ease); }
.site-nav a.nav-spaces::after { display: none; }
.site-nav a.nav-spaces:hover { background: #e6b89e; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: clamp(110px,16vh,160px); padding-bottom: clamp(48px,9vh,110px); overflow: hidden; }
.hero-media { position: absolute; inset: -16px; z-index: -2; background: var(--ink) url("../assets/img/fachada.webp") center 15%/cover no-repeat; filter: blur(2px); animation: heroZoom 20s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay { position: absolute; inset: 0; background:
  radial-gradient(ellipse 90% 70% at center 45%, rgba(20,14,10,.5) 0%, rgba(20,14,10,.66) 100%),
  linear-gradient(180deg, rgba(20,14,10,.5) 0%, rgba(20,14,10,.35) 38%, rgba(20,14,10,.92) 100%); }
.hero-content { position: relative; max-width: 880px; margin-inline: auto; color: var(--text-dk); }
.hero-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.6rem,7.5vw,5.4rem); line-height: .98; letter-spacing: -.02em; margin-bottom: 1.5rem; text-shadow: 0 2px 36px rgba(0,0,0,.45); }
.hero-title em { font-style: italic; color: var(--peach); }
.hero-sub { font-size: clamp(1.02rem,2vw,1.28rem); color: var(--text-dk); max-width: 600px; margin: 0 auto 2.2rem; text-shadow: 0 1px 18px rgba(0,0,0,.6); }
.hero-sub strong { color: #fff; } .hero-sub em { color: var(--peach); font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.6rem,5vw,3.4rem); border-top: 1px solid rgba(239,229,216,.16); padding-top: 1.6rem; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--text-dk); }
.hero-stats span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dim-dk); }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 24px; height: 40px; border: 1px solid rgba(239,229,216,.4); border-radius: 14px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-cue span { width: 3px; height: 8px; border-radius: 2px; background: var(--peach); animation: cue 1.6s var(--ease) infinite; }
@keyframes cue { 0%{transform:translateY(0);opacity:1} 70%{transform:translateY(14px);opacity:0} 100%{opacity:0} }

/* ===== TICKER ===== */
.ticker { background: var(--clay); color: #fff; overflow: hidden; padding: .9rem 0; }
.ticker-track { display: flex; gap: 1.6rem; width: max-content; animation: ticker 28s linear infinite; font-family: var(--serif); font-style: italic; font-size: 1.05rem; }
.ticker-track span { white-space: nowrap; opacity: .95; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
.section { padding-block: clamp(70px,11vw,140px); }
.section-light { background: var(--cream); color: var(--text-lt); }
.section-dark { background: var(--ink); color: var(--text-dk); }
.section-head { max-width: 660px; margin-bottom: clamp(2.6rem,6vw,4.4rem); }

/* ===== DIFERENCIAIS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.5rem; }
.card { background: #fff; border: 1px solid var(--sand); border-radius: var(--radius); padding: 2.2rem 1.8rem; transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease); }
.card:hover { transform: translateY(-6px); border-color: var(--clay); box-shadow: 0 20px 40px -24px rgba(168,84,58,.4); }
.card-num { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--clay); }
.card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; margin: 1.1rem 0 .7rem; }
.card p { color: var(--dim-lt); font-size: .96rem; }

/* ===== PLANTAS ===== */
.plans-group { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 1.3rem; color: var(--peach); margin: 0 0 1.5rem; }
.plans-group + .plans-grid { margin-bottom: 3.5rem; }

/* ===== TOUR IMERSIVO (scroll-driven) ===== */
/* altura = nº de ambientes * 100vh (controla o "comprimento" do scrub) */
.scroll-tour { position: relative; height: 600vh; background: var(--ink); }
.tour-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; background: var(--ink); }
.tour-frame { position: absolute; inset: 0; opacity: 0; will-change: opacity; }
.tour-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(var(--s, 1.08)); will-change: transform; }
.tour-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,14,10,.78) 0%, rgba(20,14,10,.12) 42%, rgba(20,14,10,.32) 100%); }
.tour-frame figcaption { position: absolute; left: var(--pad); bottom: clamp(60px, 12vh, 120px); z-index: 2; display: flex; flex-direction: column; gap: .4rem; }
.tour-kicker { font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; color: var(--peach); font-weight: 600; }
.tour-name { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(2.2rem, 6vw, 4.6rem); line-height: 1; color: var(--text-dk); }
.tour-hud { position: absolute; left: var(--pad); right: var(--pad); bottom: clamp(28px, 5vh, 48px); z-index: 3; display: flex; align-items: center; gap: 1rem; }
.tour-eyebrow { font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; color: var(--dim-dk); white-space: nowrap; }
.tour-progress { flex: 1; height: 1px; background: rgba(217,164,136,.25); position: relative; }
.tour-progress-bar { position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: var(--clay); }

/* ===== ORBYA SPACES ===== */
.section-spaces { position: relative; overflow: hidden; color: var(--text-dk); background: linear-gradient(135deg, var(--ink) 0%, #36231a 58%, var(--clay) 150%); }
.section-spaces::after { content: ""; position: absolute; top: -30%; right: -10%; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(217,164,136,.18), transparent 65%); pointer-events: none; }
.spaces-intro { color: var(--dim-dk); margin-top: 1.3rem; font-size: 1.04rem; max-width: 56ch; }
.spaces-intro em { color: var(--peach); font-style: italic; }
.section-spaces .container { position: relative; z-index: 1; }
.section-spaces .plans-group { color: var(--peach); }
.spaces-feature { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; margin: clamp(2rem, 5vw, 3.4rem) 0 clamp(2.4rem, 6vw, 4rem); }
.spaces-fachada { display: block; aspect-ratio: 4/3; border-radius: var(--radius); background-position: center; background-size: cover; background-repeat: no-repeat; border: 1px solid rgba(217,164,136,.22); cursor: zoom-in; transition: transform .4s var(--ease); }
.spaces-fachada:hover { transform: translateY(-4px); }
.spaces-highlights { display: flex; flex-direction: column; gap: .95rem; }
.spaces-highlights li { position: relative; padding-left: 1.5rem; color: var(--text-dk); font-size: 1.02rem; }
.spaces-highlights li::before { content: "◆"; position: absolute; left: 0; top: .28rem; font-size: .68rem; color: var(--peach); }
.spaces-highlights strong { color: var(--peach); font-weight: 600; }
.spaces-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin-top: clamp(2.2rem, 5vw, 3.4rem); }
.spaces-note { color: var(--dim-dk); font-size: .9rem; max-width: 44ch; }

/* ===== ZOOM / LIGHTBOX ===== */
[data-zoom] { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; background: rgba(12,8,6,.93); backdrop-filter: blur(6px); padding: clamp(16px, 4vw, 48px); }
.lightbox.open { display: flex; }
.lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 4px; background: #fff; box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); }
.lb-close { position: absolute; top: clamp(12px,3vw,28px); right: clamp(12px,3vw,28px); width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(239,229,216,.3); background: rgba(0,0,0,.35); color: var(--text-dk); font-size: 1.7rem; line-height: 1; cursor: pointer; transition: all .3s var(--ease); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(239,229,216,.3); background: rgba(0,0,0,.35); color: var(--text-dk); font-size: 2rem; line-height: 1; cursor: pointer; transition: all .3s var(--ease); }
.lb-close:hover, .lb-nav:hover { background: var(--clay); border-color: var(--clay); color: #fff; }
.lb-prev { left: clamp(8px,3vw,28px); }
.lb-next { right: clamp(8px,3vw,28px); }
.lb-counter { position: absolute; bottom: clamp(14px,3vw,28px); left: 50%; transform: translateX(-50%); color: var(--dim-dk); font-size: .85rem; letter-spacing: .1em; }
.lightbox.single .lb-nav, .lightbox.single .lb-counter { display: none; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr)); gap: 1.4rem; }
.plan { background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), border-color .4s var(--ease); }
.plan:hover { transform: translateY(-5px); border-color: var(--clay); }
.plan-img { display: block; aspect-ratio: 1/1; background-color: #fff; background-position: center; background-size: contain; background-repeat: no-repeat; cursor: zoom-in; }
.plan-body { padding: 1.3rem 1.4rem 1.5rem; }
.plan-body h4 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; margin-bottom: .7rem; display: flex; align-items: center; gap: .6rem; }
.plan-tag { font-family: var(--sans); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; background: var(--clay); color: #fff; padding: .25rem .55rem; border-radius: 99px; }
.plan-specs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.3rem; }
.plan-specs li { font-size: .76rem; letter-spacing: .04em; color: var(--dim-dk); border: 1px solid var(--ink-3); padding: .25rem .6rem; border-radius: 99px; }
.plan .btn-line { width: 100%; justify-content: center; font-size: .82rem; padding: .7rem 1rem; }

/* ===== GALERIA LAZER ===== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: .8rem; }
.g-item { position: relative; overflow: hidden; border-radius: var(--radius); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption { position: absolute; left: 0; bottom: 0; padding: 1rem 1.1rem; color: #fff; font-family: var(--serif); font-size: 1.1rem; z-index: 2; }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20,14,10,.75) 100%); z-index: 1; }
.g-lg { grid-column: span 2; grid-row: span 2; }
.amenities-tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.amenities-tags li { font-size: .82rem; color: var(--dim-lt); border: 1px solid var(--sand); padding: .4rem .9rem; border-radius: 99px; }
.amenities-note { margin-top: 1.4rem; font-size: .8rem; color: var(--dim-lt); font-style: italic; }

/* ===== LOCALIZAÇÃO ===== */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.loc-desc { color: var(--dim-dk); margin: 1.4rem 0 1.8rem; max-width: 440px; }
.loc-list { margin-bottom: 2.2rem; }
.loc-list li { padding: .8rem 0; border-bottom: 1px solid var(--ink-3); color: var(--dim-dk); }
.loc-list strong { color: var(--text-dk); font-weight: 600; }
.loc-map { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--ink-3); }
.loc-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) contrast(1.05) sepia(.12); }

/* ===== INCORPORADORA ===== */
.proof { max-width: 720px; }
.proof-desc { color: var(--dim-lt); margin: 1.4rem 0 2.4rem; font-size: 1.08rem; }
.proof-desc strong { color: var(--text-lt); }

/* ===== CTA FINAL ===== */
.cta-final { background: linear-gradient(160deg, var(--clay) 0%, #823c28 100%); color: #fff; padding-block: clamp(70px,11vw,130px); position: relative; overflow: hidden; }
.cta-final::before { content: "◆"; position: absolute; font-size: 30rem; right: -4rem; top: 50%; transform: translateY(-50%); opacity: .07; }
.cta-inner { position: relative; text-align: center; max-width: 700px; margin-inline: auto; }
.cta-final .eyebrow { color: rgba(255,255,255,.75); }
.cta-title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.2rem,6vw,4rem); line-height: 1; margin-bottom: 1.3rem; }
.cta-sub { font-size: 1.12rem; color: rgba(255,255,255,.9); margin-bottom: 2.3rem; }
.cta-sub strong { color: #fff; }
.cta-final .btn-primary { background: var(--ink); color: var(--cream); }
.cta-final .btn-primary:hover { background: #000; box-shadow: 0 14px 30px -12px rgba(0,0,0,.5); }
.cta-fine { margin-top: 1.2rem; font-size: .85rem; color: rgba(255,255,255,.8); }

/* ===== FOOTER ===== */
.site-footer { background: var(--ink); color: var(--text-dk); padding-block: 3.4rem; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: start; }
.footer-brand .brand-logo { height: 64px; }
.footer-legal p { font-size: .82rem; color: var(--dim-dk); line-height: 1.7; }
.footer-legal strong { color: var(--text-dk); }
.footer-disclaimer { margin-top: .9rem; font-size: .74rem !important; opacity: .85; max-width: 560px; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 200; width: 60px; height: 60px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; color: #fff; font-size: 1.6rem; box-shadow: 0 10px 26px -8px rgba(31,174,90,.7); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float-pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: pulse 2.2s var(--ease) infinite; }
@keyframes pulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.8);opacity:0} }

/* ===== BADGE PRÉ-LANÇAMENTO (hero) ===== */
.pre-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--peach); border: 1px solid rgba(217,164,136,.3);
  padding: .45rem 1.1rem; border-radius: 999px;
  margin-bottom: 1.8rem; backdrop-filter: blur(4px);
}
.pre-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--peach); flex-shrink: 0;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ===== COMO FUNCIONA (steps) ===== */
.steps-list { list-style: none; max-width: 760px; }
.step {
  display: grid; grid-template-columns: 72px 1fr; gap: 1.4rem;
  align-items: start; padding: 1.8rem 0;
  border-bottom: 1px solid var(--sand);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif); font-size: 2.6rem; font-weight: 300;
  color: var(--clay); opacity: .45; line-height: 1; padding-top: .1rem;
}
.step-body h3 {
  font-family: var(--serif); font-weight: 400; font-size: 1.18rem;
  color: var(--text-lt); margin-bottom: .45rem;
}
.step-body p { color: var(--dim-lt); font-size: .94rem; max-width: 52ch; }
.steps-cta { margin-top: 2.8rem; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-lg { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 860px) {
  .loc-grid { grid-template-columns: 1fr; }
  .spaces-feature { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.6rem; }
  .site-header .btn-ghost span:not(.wa-icon) { display: none; }
  .site-nav { display: none; }
}
@media (max-width: 560px) {
  .hero { align-items: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .scroll-cue { display: none; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .g-lg { grid-column: span 1; }

  /* badge pré-lançamento */
  .pre-badge { font-size: .68rem; padding: .4rem .85rem; flex-wrap: wrap; justify-content: center; text-align: center; }

  /* steps "como funciona" */
  .step { grid-template-columns: 48px 1fr; gap: .9rem; padding: 1.3rem 0; }
  .step-num { font-size: 2rem; }
  .steps-cta { text-align: center; }
  .steps-cta .btn { width: 100%; justify-content: center; }

  /* hero stats: menos gap em tela pequena */
  .hero-stats { gap: 1.2rem; padding-top: 1.2rem; }

  /* planos: botão full-width */
  .plan .btn-line { font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }
