/* =========================================================
   1. IDENTIDADE VISUAL
   Azul e violeta observados na marca do Instagram + briefing.
   ========================================================= */
:root {
  --blue: #146ef5;
  --electric: #2e8bff;
  --violet: #6757d9;
  --graphite: #111318;
  --dark: #20242c;
  --light: #f2f4f7;
  --white: #ffffff;
  --green: #1d9b5b;
  --whatsapp: #25d366;
  --amber: #d98316;
  --muted: #687080;
  --line: rgba(17,19,24,.11);
  --shadow: 0 24px 70px rgba(17,19,24,.13);
  --title: "Sora", sans-serif;
  --body: "Inter", sans-serif;
  --container: 1200px;
}

/* RESET E ACESSIBILIDADE */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; overflow-x: hidden; color: var(--graphite); background: var(--white); font-family: var(--body); line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button,input,select { font: inherit; }
button,a { -webkit-tap-highlight-color: transparent; }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: var(--title); line-height: 1.1; }
h1 { font-size: clamp(3rem,5.6vw,5.9rem); letter-spacing: -.055em; }
h2 { margin-bottom: 23px; font-size: clamp(2.25rem,4.2vw,4.25rem); letter-spacing: -.045em; }
h3 { letter-spacing: -.025em; }
p { color: var(--muted); }
:focus-visible { outline: 3px solid var(--electric); outline-offset: 4px; }
.container { width: min(calc(100% - 40px),var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.skip-link { position: fixed; top: -100px; left: 20px; z-index: 5000; padding: 12px 18px; color: var(--white); background: var(--blue); font-weight: 700; }
.skip-link:focus { top: 20px; }
.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 3000; height: 3px; background: linear-gradient(90deg,var(--violet),var(--electric)); transform: scaleX(0); transform-origin: left; }

/* TÍTULOS E BOTÕES */
.kicker,.eyebrow { margin-bottom: 16px; color: var(--blue); font-size: .67rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.kicker.light { color: #bcd7ff; }
.section-heading { max-width: 650px; }
.section-heading.centered { max-width: 820px; margin: 0 auto 55px; text-align: center; }
.section-heading > p:not(.kicker) { font-size: 1rem; }
.button { position: relative; display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; overflow: hidden; padding: 13px 22px; border: 1px solid transparent; border-radius: 12px; cursor: pointer; font-size: .78rem; font-weight: 800; transition: transform 180ms ease,box-shadow 180ms ease,background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-blue { color: var(--white); background: var(--blue); box-shadow: 0 13px 30px rgba(20,110,245,.2); }
.button-blue:hover { background: #075fdc; box-shadow: 0 16px 38px rgba(20,110,245,.29); }
.button-outline { border-color: var(--line); background: rgba(255,255,255,.6); }
.button-white { color: var(--blue); background: var(--white); }
.button-whatsapp { color: #052713; background: var(--whatsapp); }
.button-ripple { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.5); pointer-events: none; transform: translate(-50%,-50%) scale(0); animation: ripple 620ms ease-out forwards; }
@keyframes ripple { to { opacity: 0; transform: translate(-50%,-50%) scale(25); } }

/* CABEÇALHO */
.site-header { position: sticky; top: 0; z-index: 2000; border-bottom: 1px solid transparent; background: rgba(255,255,255,.88); backdrop-filter: blur(17px); transition: 180ms ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(17,19,24,.07); }
.header-inner { display: flex; min-height: 82px; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 50px; height: 50px; border-radius: 14px; object-fit: cover; }
.brand span { display: flex; flex-direction: column; }
.brand strong { color: var(--graphite); font-family: var(--title); font-size: 1.05rem; }
.brand small { color: var(--muted); font-size: .55rem; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; gap: 24px; margin-left: auto; }
.main-nav a { color: #4e5561; font-size: .71rem; font-weight: 700; }
.main-nav a:hover { color: var(--blue); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
.menu-toggle i { display: block; width: 19px; height: 2px; margin: 5px auto; background: var(--graphite); }

/* HERO */
.hero { position: relative; overflow: hidden; padding-top: 75px; background: linear-gradient(155deg,#f5f9ff 0%,#fff 58%); }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 80px; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-lead { max-width: 680px; margin-bottom: 30px; font-size: 1.05rem; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(29,155,91,.1); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.microcopy { margin: 12px 0 27px 3px; font-size: .7rem; }
.hero-credential { display: grid; grid-template-columns: 40px 1fr; align-items: center; max-width: 350px; color: var(--muted); font-size: .68rem; }
.hero-credential > span { grid-row: 1/3; display: grid; width: 35px; height: 35px; place-items: center; border-radius: 50%; color: var(--blue); background: rgba(20,110,245,.09); }
.hero-credential strong,.hero-credential small { display: block; }
.hero-gallery { position: relative; min-height: 620px; }
.hero-photo { position: absolute; overflow: hidden; margin: 0; border: 7px solid var(--white); border-radius: 28px; box-shadow: var(--shadow); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { top: 35px; left: 10%; width: 62%; height: 520px; z-index: 2; }
.hero-photo-top { top: 0; right: 0; width: 40%; height: 255px; transform: rotate(3deg); }
.hero-photo-bottom { right: 0; bottom: 20px; width: 43%; height: 280px; z-index: 3; transform: rotate(-2deg); }
.gallery-note { position: absolute; bottom: 0; left: 0; z-index: 4; padding: 16px 19px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.gallery-note span,.gallery-note strong,.gallery-note small { display: block; }
.gallery-note span { color: var(--blue); font-size: .58rem; font-weight: 800; text-transform: uppercase; }
.gallery-note strong { font-size: .82rem; }
.gallery-note small { color: var(--muted); font-size: .62rem; }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); transition: transform 350ms ease; }
.orb-one { top: 70px; right: -150px; width: 420px; height: 420px; background: rgba(103,87,217,.08); }
.orb-two { bottom: 30px; left: -100px; width: 240px; height: 240px; background: rgba(46,139,255,.07); }

/* CONFIANÇA E CATEGORIAS */
.trust-strip { color: var(--white); background: var(--graphite); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid article { display: grid; min-height: 130px; grid-template-columns: 42px 1fr; align-items: center; gap: 10px; padding: 23px; border-right: 1px solid rgba(255,255,255,.11); }
.trust-grid article:last-child { border: 0; }
.trust-grid article > span { color: #77b2ff; font-family: var(--title); font-size: 1.05rem; }
.trust-grid strong,.trust-grid small { display: block; }
.trust-grid strong { font-size: .82rem; }
.trust-grid small { color: rgba(255,255,255,.5); font-size: .61rem; }
.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 13px; }
.category-card { overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: var(--white); box-shadow: 0 12px 35px rgba(17,19,24,.06); }
.category-card img { width: 100%; aspect-ratio: 1/1.03; object-fit: cover; transition: transform 500ms ease; }
.category-card:hover img { transform: scale(1.04); }
.category-card > div { padding: 23px; }
.category-card span { color: var(--blue); font-size: .59rem; font-weight: 800; text-transform: uppercase; }
.category-card h3 { margin: 6px 0 9px; }
.category-card p { min-height: 57px; font-size: .74rem; }
.category-card button { min-height: 44px; padding: 0; border: 0; color: var(--blue); cursor: pointer; background: transparent; font-size: .7rem; font-weight: 800; }

/* ASSISTENTE */
.chooser-section { color: var(--white); background: linear-gradient(135deg,#075fdc,var(--violet)); }
.chooser-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: 80px; }
.chooser-section .section-heading > p:not(.kicker) { color: rgba(255,255,255,.7); }
.chooser-image { width: 100%; height: 280px; margin-top: 32px; object-fit: cover; border: 7px solid rgba(255,255,255,.16); border-radius: 24px; }
.chooser-form { padding: 38px; border: 1px solid rgba(255,255,255,.2); border-radius: 24px; background: rgba(10,39,104,.28); backdrop-filter: blur(12px); }
.chooser-form fieldset { margin: 0 0 26px; padding: 0; border: 0; }
.chooser-form legend { margin-bottom: 12px; font-size: .78rem; font-weight: 800; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.choice-grid label { cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; }
.choice-grid span { display: grid; min-height: 48px; place-items: center; padding: 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; color: rgba(255,255,255,.8); font-size: .7rem; font-weight: 700; }
.choice-grid input:checked + span { border-color: var(--white); color: var(--blue); background: var(--white); }
.choice-grid input:focus-visible + span { outline: 3px solid #fff; outline-offset: 2px; }
.chooser-form select { width: 100%; min-height: 49px; padding: 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; color: var(--graphite); background: var(--white); }
.form-status { min-height: 20px; margin: 10px 0 0; color: #fff; font-size: .68rem; }

/* BENEFÍCIOS E PROCESSO */
.benefits-section { background: var(--light); }
.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.benefit-card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.benefit-card > span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 13px; color: var(--blue); background: rgba(20,110,245,.09); font-size: 1.2rem; }
.benefit-card h3 { margin: 48px 0 9px; font-size: 1.02rem; }
.benefit-card p { margin: 0; font-size: .73rem; }
.process-section { color: var(--white); background: var(--graphite); }
.process-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 85px; }
.process-section .section-heading > p:not(.kicker) { color: rgba(255,255,255,.55); }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 60px 1fr; gap: 15px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.steps-list li > span { color: #77b2ff; font-family: var(--title); }
.steps-list h3 { margin: 0 0 5px; font-size: .95rem; }
.steps-list p { margin: 0; color: rgba(255,255,255,.5); font-size: .72rem; }

/* SEMINOVOS */
.used-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; }
.used-collage { position: relative; min-height: 580px; }
.used-main { width: 78%; height: 520px; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); }
.used-small { position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 1; object-fit: cover; border: 7px solid var(--white); border-radius: 24px; }
.used-collage > span { position: absolute; top: 25px; right: 3px; display: grid; width: 115px; height: 115px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue); font-size: .68rem; font-weight: 800; text-align: center; transform: rotate(7deg); }
.check-list { display: grid; gap: 11px; margin: 26px 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 8px; color: var(--muted); font-size: .78rem; }
.check-list span { display: grid; width: 23px; height: 23px; place-items: center; border-radius: 50%; color: var(--white); background: var(--green); font-size: .63rem; }

/* VITRINE DINÂMICA */
.showcase-section { background: var(--light); }
.showcase-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 30px; }
.showcase-heading h2 { margin-bottom: 0; }
.showcase-heading > p { max-width: 400px; font-size: .75rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 25px; }
.filter-button { min-height: 42px; padding: 8px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); cursor: pointer; background: var(--white); font-size: .66rem; font-weight: 700; }
.filter-button.active { color: var(--white); background: var(--blue); }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.product-image { position: relative; aspect-ratio: 1/1.03; overflow: hidden; background: #e8ebef; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.product-card:hover img { transform: scale(1.035); }
.status-badge { position: absolute; top: 10px; left: 10px; padding: 5px 8px; border-radius: 999px; color: var(--white); background: var(--green); font-size: .55rem; font-weight: 800; }
.status-badge.unavailable { background: #6e7480; }
.product-info { padding: 20px; }
.product-info small { color: var(--blue); font-size: .58rem; font-weight: 800; text-transform: uppercase; }
.product-info h3 { margin: 6px 0 8px; font-size: .95rem; }
.spec-list { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.spec-list span { padding: 5px 7px; border-radius: 5px; color: #586170; background: var(--light); font-size: .55rem; }
.product-info p { margin: 0 0 13px; font-size: .7rem; }
.product-info .button { width: 100%; min-height: 45px; padding: 10px; font-size: .66rem; }
.empty-products { grid-column: 1/-1; padding: 60px 20px; border: 1px dashed var(--line); border-radius: 18px; text-align: center; }

/* ACESSÓRIOS, LOJA E TRANSPARÊNCIA */
.accessory-banner { position: relative; min-height: 520px; overflow: hidden; }
.accessory-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.42) saturate(.78); }
.accessory-banner::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg,rgba(17,19,24,.92),rgba(17,19,24,.2)); }
.accessory-content { position: relative; z-index: 2; display: flex; min-height: 520px; flex-direction: column; align-items: flex-start; justify-content: center; color: var(--white); }
.accessory-content h2,.accessory-content p { max-width: 650px; }
.accessory-content p { color: rgba(255,255,255,.65); }
.store-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 80px; }
.store-section address { display: grid; margin: 26px 0; color: var(--muted); font-style: normal; }
.store-section address strong { color: var(--graphite); }
.placeholder-info { font-size: .72rem; }
.store-photos { position: relative; min-height: 580px; }
.store-main { width: 80%; height: 540px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.store-team { position: absolute; right: 0; bottom: 0; width: 46%; aspect-ratio: 1; object-fit: cover; border: 7px solid var(--white); border-radius: 23px; }
.transparency-section { color: var(--white); background: var(--dark); }
.transparency-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 85px; }
.transparency-section .section-heading > p:not(.kicker) { color: rgba(255,255,255,.55); }
.accordion { border-top: 1px solid rgba(255,255,255,.15); }
.accordion details { border-bottom: 1px solid rgba(255,255,255,.15); }
.accordion summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-family: var(--title); font-size: .9rem; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { display: grid; min-width: 29px; height: 29px; place-items: center; border: 1px solid currentColor; border-radius: 50%; transition: transform 180ms ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -3px 45px 22px 0; color: rgba(255,255,255,.55); font-size: .73rem; }

/* LOCALIZAÇÃO E CTA */
.location-section { padding: 95px 0; color: var(--white); background: linear-gradient(135deg,#075fdc,var(--violet)); }
.location-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; }
.location-copy p:not(.kicker) { color: rgba(255,255,255,.7); }
.map-wrap { overflow: hidden; height: 450px; border: 6px solid rgba(255,255,255,.16); border-radius: 25px; }
.map-wrap iframe { width: 100%; height: 100%; }
.final-cta { background: linear-gradient(135deg,#eaf3ff,#fff); }
.final-inner { max-width: 850px; margin: auto; text-align: center; }
.final-inner > p:not(.kicker) { max-width: 650px; margin: 0 auto 27px; }
.final-inner small { display: block; margin-top: 13px; color: var(--muted); font-size: .65rem; }
.faq-section { color: var(--white); background: var(--graphite); }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 85px; align-items: start; }
.faq-section .section-heading > p:not(.kicker) { color: rgba(255,255,255,.55); }

/* RODAPÉ */
.site-footer { padding: 75px 0 25px; color: var(--white); background: #0b0d11; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 50px; }
.footer-brand p { max-width: 240px; margin-top: 20px; color: rgba(255,255,255,.43); font-size: .7rem; }
.footer-brand .brand strong { color: var(--white); }
.footer-grid h2 { color: #77b2ff; font-family: var(--body); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a,.footer-grid span,.footer-grid button { display: block; margin: 0 0 9px; padding: 0; border: 0; color: rgba(255,255,255,.46); background: none; font-size: .65rem; text-align: left; }
.footer-grid a:hover,.footer-grid button:hover { color: var(--white); cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom span { color: rgba(255,255,255,.29); font-size: .58rem; }
.footer-bottom span span { display: inline; }
.mobile-cta { display: none; }

/* MODAL, COOKIES E TOAST */
.site-dialog { width: min(calc(100% - 30px),560px); padding: 40px; border: 0; border-radius: 22px; box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.site-dialog::backdrop { background: rgba(17,19,24,.72); backdrop-filter: blur(7px); }
.site-dialog h2 { margin-bottom: 14px; font-size: 2rem; }
.site-dialog p { font-size: .78rem; }
.dialog-close { position: absolute; top: 13px; right: 13px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; background: none; font-size: 1.3rem; }
.dialog-icon { display: grid; width: 45px; height: 45px; place-items: center; margin-bottom: 20px; border-radius: 14px; color: var(--white); background: var(--blue); font-family: var(--title); font-size: .7rem; }
.cookie-banner { position: fixed; right: 20px; bottom: 20px; left: 20px; z-index: 2200; display: flex; max-width: 900px; align-items: center; justify-content: space-between; gap: 25px; margin: auto; padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
.cookie-banner.hidden { display: none; }
.cookie-banner strong { font-family: var(--title); font-size: .85rem; }
.cookie-banner p { max-width: 530px; margin: 3px 0 0; font-size: .62rem; }
.cookie-banner > div:last-child { display: flex; gap: 7px; }
.cookie-banner .button { min-height: 45px; padding: 10px 14px; font-size: .63rem; }
.toast { position: fixed; right: 20px; bottom: 20px; z-index: 5000; max-width: 340px; padding: 15px 18px; border-radius: 12px; color: var(--white); background: var(--graphite); box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); pointer-events: none; transition: 200ms ease; }
.toast.show { opacity: 1; transform: none; }

/* ANIMAÇÕES */
.reveal { opacity: 0; transform: translateY(23px); transition: opacity 650ms ease,transform 650ms cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

/* TABLET */
@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .header-cta { display: none; }
  .main-nav { gap: 15px; }
  .hero-grid,.chooser-grid,.used-grid,.store-grid,.transparency-grid,.location-grid,.faq-grid { gap: 50px; }
  .hero-grid { grid-template-columns: 1fr .8fr; }
  .hero-gallery { min-height: 540px; }
  .hero-photo-main { height: 450px; }
  .hero-photo-top { height: 210px; }
  .hero-photo-bottom { height: 240px; }
  .category-grid,.benefit-grid,.product-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .trust-grid article:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.11); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

/* CELULAR */
@media (max-width: 720px) {
  body { padding-bottom: 75px; }
  .container { width: min(calc(100% - 30px),var(--container)); }
  .section { padding: 74px 0; }
  h1 { font-size: clamp(2.9rem,14vw,4.3rem); }
  h2 { font-size: clamp(2.15rem,10vw,3.1rem); }
  .header-inner { min-height: 70px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { position: fixed; top: 70px; right: 0; left: 0; display: grid; gap: 0; padding: 12px 20px 27px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98); box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); visibility: hidden; transition: 180ms ease; }
  .main-nav.open { opacity: 1; transform: none; visibility: visible; }
  .main-nav a { min-height: 50px; padding: 14px 3px; border-bottom: 1px solid var(--line); }
  .hero { padding-top: 43px; }
  .hero-grid,.chooser-grid,.process-grid,.used-grid,.store-grid,.transparency-grid,.location-grid,.faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-gallery { min-height: 500px; }
  .hero-photo-main { left: 2%; width: 68%; height: 420px; }
  .hero-photo-top { width: 42%; height: 190px; }
  .hero-photo-bottom { width: 46%; height: 215px; }
  .trust-grid,.category-grid,.benefit-grid,.product-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid article { min-height: 110px; padding: 17px 12px; }
  .category-card > div { padding: 17px; }
  .category-card p { min-height: 82px; }
  .chooser-form { padding: 27px 18px; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card { min-height: 235px; padding: 21px; }
  .used-collage,.store-photos { min-height: 500px; }
  .used-main,.store-main { height: 450px; }
  .showcase-heading { display: block; }
  .accessory-banner,.accessory-content { min-height: 470px; }
  .map-wrap { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-grid > div:last-child { display: none; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .mobile-cta { position: fixed; right: 0; bottom: 0; left: 0; z-index: 2100; display: block; padding: 10px 12px; border-top: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
  .mobile-cta .button { width: 100%; min-height: 54px; }
  .cookie-banner { bottom: 84px; flex-direction: column; align-items: stretch; gap: 10px; }
  .cookie-banner > div:last-child { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 430px) {
  .category-grid,.benefit-grid,.product-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .category-card h3,.product-info h3 { font-size: .88rem; }
  .category-card p { font-size: .65rem; }
  .product-info { padding: 14px; }
}

/* Respeito à preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .scroll-progress { display: none; }
}
