@font-face { font-family: "Sora"; src: url("/eletrica-automacao/fonts/sora-latin-ext.woff2") format("woff2"); font-style: normal; font-weight: 100 800; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/eletrica-automacao/fonts/inter-latin-ext.woff2") format("woff2"); font-style: normal; font-weight: 100 900; font-display: swap; }

:root {
  --ink: #11120f;
  --ink-soft: #1a1c18;
  --paper: #f4f3ed;
  --paper-deep: #e9e7de;
  --white: #fff;
  --muted: #686a64;
  --line: rgba(17, 18, 15, .14);
  --yellow: #ffd329;
  --yellow-deep: #eabf00;
  --green: #1ead5a;
  --navy: #061934;
  --navy-2: #0d294d;
  --max: 1240px;
  --section-space: clamp(3rem, 4.5vw, 4rem);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: "Inter", system-ui, sans-serif; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img, svg { display: block; }
svg { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
::selection { color: var(--ink); background: var(--yellow); }
[hidden] { display: none !important; }
section[id] { scroll-margin-top: 72px; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.section-shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; top: 0; left: 1rem; padding: .85rem 1rem; color: var(--ink); background: var(--yellow); transform: translateY(-120%); font-weight: 850; }
.skip-link:focus { transform: none; }
.page-progress { position: fixed; z-index: 300; inset: 0 0 auto; height: 3px; pointer-events: none; }
.page-progress span { display: block; width: 0; height: 100%; background: var(--yellow); box-shadow: 0 0 15px rgba(255, 211, 41, .65); }
.eyebrow { margin: 0; color: var(--muted); font-size: .73rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.button { min-height: 54px; padding: .4rem 1.15rem; display: inline-flex; align-items: center; justify-content: space-between; gap: 1.6rem; border: 1px solid transparent; font-size: .8rem; font-weight: 850; letter-spacing: .01em; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button span, .text-link span { font-size: 1rem; transition: transform .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button:hover span, .text-link:hover span { transform: translate(2px, -2px); }
.button-primary { color: var(--ink); background: var(--yellow); }
.button-primary:hover { background: #ffe163; }
.button-outline { color: white; border-color: rgba(255, 255, 255, .45); background: rgba(0, 0, 0, .15); backdrop-filter: blur(8px); }
.button-outline:hover { border-color: white; background: rgba(255, 255, 255, .1); }
.button-dark { color: white; background: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 1.1rem; padding-bottom: .35rem; border-bottom: 1px solid currentColor; font-size: .82rem; font-weight: 850; }

.site-header { position: fixed; z-index: 120; inset: 0 0 auto; height: 82px; padding-inline: max(24px, calc((100vw - var(--max)) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: white; border-bottom: 1px solid rgba(255, 255, 255, .13); transition: height .25s, background .25s, box-shadow .25s; }
.site-header.scrolled, body.menu-open .site-header { height: 70px; background: rgba(17, 18, 15, .95); box-shadow: 0 10px 35px rgba(0, 0, 0, .15); backdrop-filter: blur(15px); }
.brand { justify-self: start; display: flex; align-items: center; gap: .8rem; }
.brand img { width: 146px; height: auto; }
.brand > span { padding-left: .8rem; color: rgba(255, 255, 255, .75); border-left: 1px solid rgba(255, 255, 255, .22); font-size: .66rem; font-style: normal; font-weight: 750; letter-spacing: .08em; line-height: 1.35; text-transform: uppercase; }
.brand > span i { color: var(--yellow); font-style: normal; }
.desktop-nav { display: flex; align-items: center; gap: 2rem; }
.desktop-nav a { position: relative; padding: .5rem 0; color: rgba(255, 255, 255, .78); font-size: .74rem; font-weight: 750; }
.desktop-nav a::after { position: absolute; content: ""; inset: auto 0 0; height: 1px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.header-cta { min-height: 42px; padding: 0 .85rem; justify-self: end; display: flex; align-items: center; gap: .7rem; color: var(--ink); background: var(--yellow); font-size: .7rem; font-weight: 850; }
.header-cta span { font-size: .9rem; }
.menu-button { width: 44px; height: 44px; padding: 0; display: none; place-items: center; color: white; border: 1px solid rgba(255, 255, 255, .3); background: transparent; cursor: pointer; }
.menu-button span { grid-area: 1 / 1; width: 18px; height: 1px; background: currentColor; transition: transform .2s; }
.menu-button span:first-child { transform: translateY(-4px); }
.menu-button span:last-child { transform: translateY(4px); }
.menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 110; inset: 0; padding: 110px 24px 28px; color: white; background: var(--ink); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { padding: 1rem 0; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, .14); font-family: "Sora", sans-serif; font-size: clamp(1.4rem, 7vw, 2.1rem); font-weight: 500; letter-spacing: -.045em; }
.mobile-menu nav a span { color: var(--yellow); font-family: "Inter", sans-serif; font-size: .62rem; font-weight: 850; letter-spacing: .1em; }
.mobile-menu-foot { position: absolute; inset: auto 24px 28px; display: flex; justify-content: space-between; color: rgba(255, 255, 255, .5); font-size: .69rem; }

.hero { position: relative; min-height: max(720px, 100svh); overflow: hidden; display: flex; align-items: end; color: white; background: #171711; }
.hero-photo { position: absolute; inset: 0; background: url("/eletrica-automacao/assets/hero-eletrica-automacao.webp") center / cover no-repeat; transform: scale(1.015); animation: heroSettle 1.4s cubic-bezier(.2, .8, .2, 1) forwards; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 11, 9, .96) 0%, rgba(10, 11, 9, .84) 34%, rgba(10, 11, 9, .28) 61%, rgba(10, 11, 9, .12) 100%), linear-gradient(0deg, rgba(10, 11, 9, .65), transparent 48%); }
.hero-overlay::after { position: absolute; content: ""; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px); background-size: 92px 92px; mask-image: linear-gradient(90deg, black, transparent 58%); }
.hero-rail { position: absolute; z-index: 2; inset: 128px auto 88px max(18px, calc((100vw - 1400px) / 2)); display: flex; flex-direction: column; align-items: center; gap: 1rem; color: rgba(255, 255, 255, .45); font-size: .55rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-rail i { width: 1px; flex: 1; background: linear-gradient(transparent, var(--yellow), transparent); }
.hero-shell { position: relative; z-index: 3; width: min(var(--max), calc(100% - 128px)); margin: 0 auto 7vh; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .55fr); align-items: end; gap: 5rem; }
.hero-copy { max-width: 760px; }
.hero .eyebrow { display: flex; align-items: center; gap: .7rem; color: rgba(255, 255, 255, .72); }
.hero .eyebrow span { width: 7px; height: 7px; background: var(--yellow); box-shadow: 0 0 0 5px rgba(255, 211, 41, .14); }
.hero h1 { max-width: 760px; margin: 1.2rem 0 0; font-family: "Sora", sans-serif; font-size: clamp(3.6rem, 6.3vw, 6.7rem); font-weight: 470; line-height: .91; letter-spacing: -.075em; }
.hero h1 em, .section-heading h2 em, .automation-intro h2 em, .guidance-title h2 em, .store-copy h2 em, .instagram-card h2 em, .faq-section h2 em, .final-content h2 em { color: var(--yellow); font-style: normal; }
.hero-lead { max-width: 610px; margin: 1.6rem 0 0; color: rgba(255, 255, 255, .72); font-size: 1.05rem; line-height: 1.7; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-card { align-self: end; padding: .5rem 1.2rem; border: 1px solid rgba(255, 255, 255, .24); background: rgba(19, 20, 17, .7); box-shadow: 0 24px 80px rgba(0, 0, 0, .22); backdrop-filter: blur(16px); }
.hero-card-top { min-height: 68px; display: flex; align-items: center; gap: .7rem; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.hero-card-top p { margin: 0; display: flex; align-items: baseline; gap: .5rem; }
.hero-card-top strong { font-size: .76rem; }
.hero-card-top small { color: rgba(255, 255, 255, .55); font-size: .65rem; }
.status-dot { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: #59db7e; box-shadow: 0 0 0 5px rgba(89, 219, 126, .13); }
.hero-card > a { min-height: 74px; display: flex; align-items: center; gap: .85rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.hero-card > a:last-child { border-bottom: 0; }
.hero-card svg { width: 20px; height: 20px; color: var(--yellow); }
.hero-card a > span { font-size: .73rem; font-weight: 780; }
.hero-card small { margin-top: .22rem; display: block; color: rgba(255, 255, 255, .48); font-size: .62rem; font-weight: 500; }
.hero-scroll { position: absolute; z-index: 4; right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 1.8rem; display: flex; align-items: center; gap: .7rem; color: rgba(255, 255, 255, .45); font-size: .56rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-scroll span { width: 40px; height: 1px; background: var(--yellow); }

.trust-strip { color: white; background: var(--ink); border-top: 1px solid rgba(255, 255, 255, .1); }
.trust-strip-inner { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; display: grid; grid-template-columns: 1.05fr 1fr 1fr; }
.trust-strip-inner > * { min-height: 136px; padding: 1.2rem 2rem; display: flex; align-items: center; gap: 1rem; border-right: 1px solid rgba(255, 255, 255, .13); }
.trust-strip-inner > *:first-child { padding-left: 0; }
.trust-strip-inner > *:last-child { padding-right: 0; border-right: 0; }
.trust-strip-inner svg { width: 30px; height: 30px; color: var(--yellow); }
.trust-strip-inner strong { display: block; font-family: "Sora", sans-serif; font-size: .9rem; font-weight: 600; }
.trust-strip-inner small { margin-top: .25rem; display: block; color: rgba(255, 255, 255, .48); font-size: .65rem; line-height: 1.4; }
.rating-proof { display: grid !important; grid-template-columns: auto auto 1fr auto; grid-template-rows: auto auto; gap: 0 .7rem !important; }
.rating-proof .stars { grid-column: 1 / 3; color: var(--yellow); font-size: .72rem; letter-spacing: .12em; }
.rating-proof > strong { grid-column: 1; font-size: 2.1rem; letter-spacing: -.06em; }
.rating-proof > small { grid-column: 2 / 4; align-self: center; margin: 0; }
.rating-proof > i { grid-column: 4; grid-row: 1 / 3; align-self: center; color: var(--yellow); font-style: normal; }

.materials-section { padding: var(--section-space) 0; color: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1.45fr .7fr; align-items: end; gap: 4rem; }
.section-heading h2, .automation-intro h2, .guidance-title h2, .store-copy h2, .reviews-section h2, .instagram-card h2, .faq-section h2, .final-content h2 { margin: .9rem 0 0; font-family: "Sora", sans-serif; font-weight: 470; line-height: .96; letter-spacing: -.065em; }
.section-heading h2 { max-width: 780px; font-size: clamp(3rem, 5vw, 5.2rem); }
.section-heading p:last-child { margin: 0 0 .5rem; color: var(--muted); font-size: .95rem; line-height: 1.75; }
.material-grid { margin-top: 4.5rem; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(260px, auto); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.material-card { position: relative; min-width: 0; padding: 1.6rem; overflow: hidden; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s, color .25s; }
.material-card > span { align-self: end; color: #9a9b96; font-size: .61rem; font-weight: 800; letter-spacing: .11em; }
.material-card > svg { width: 47px; height: 47px; margin-top: 1rem; color: var(--ink); }
.material-card > div { margin-top: auto; padding-top: 2.4rem; }
.material-card h3 { margin: 0; font-family: "Sora", sans-serif; font-size: 1.25rem; font-weight: 600; letter-spacing: -.045em; }
.material-card p { margin: .65rem 0 0; color: var(--muted); font-size: .8rem; line-height: 1.6; }
.material-card:hover { color: white; background: var(--ink-soft); }
.material-card:hover p, .material-card:hover > span { color: rgba(255, 255, 255, .55); }
.material-card:hover svg { color: var(--yellow); }
.material-card-featured { grid-row: span 2; color: white; background: var(--ink); }
.material-card-featured::before { position: absolute; content: ""; width: 240px; height: 240px; right: -90px; top: 50px; border: 1px solid rgba(255, 211, 41, .28); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255, 211, 41, .035), 0 0 0 90px rgba(255, 211, 41, .025); }
.material-card-featured > span { color: rgba(255, 255, 255, .4); }
.material-card-featured > svg { position: relative; width: 74px; height: 74px; color: var(--yellow); }
.material-card-featured h3 { font-size: 2rem; }
.material-card-featured p { color: rgba(255, 255, 255, .62); }
.material-card-featured > i { margin-top: 1.5rem; color: var(--yellow); font-size: .6rem; font-style: normal; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.materials-cta { padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid var(--line); }
.materials-cta p { margin: 0; color: var(--muted); font-size: .84rem; }
.materials-cta p span { color: var(--ink); font-weight: 850; }

.automation-section { position: relative; padding: var(--section-space) 0; overflow: hidden; color: white; background: #11120f; }
.automation-section::before { position: absolute; content: ""; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(circle at 74% 50%, black, transparent 64%); }
.automation-glow { position: absolute; width: 460px; height: 460px; right: 8%; top: 22%; border-radius: 50%; background: rgba(255, 211, 41, .12); filter: blur(110px); }
.automation-layout { position: relative; display: grid; grid-template-columns: .9fr 1fr; align-items: center; gap: clamp(4rem, 9vw, 8rem); }
.automation-intro { max-width: 520px; }
.automation-intro .eyebrow { color: var(--yellow); }
.automation-intro h2 { font-size: clamp(3.2rem, 5vw, 5.3rem); }
.automation-intro > p:not(.eyebrow) { max-width: 500px; margin: 1.6rem 0 2rem; color: rgba(255, 255, 255, .6); font-size: .97rem; line-height: 1.75; }
.automation-panel { padding: 1.2rem; border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .045); box-shadow: 0 40px 100px rgba(0, 0, 0, .3); backdrop-filter: blur(14px); }
.automation-panel-head { padding: .45rem .3rem 1rem; display: flex; justify-content: space-between; color: rgba(255, 255, 255, .55); border-bottom: 1px solid rgba(255, 255, 255, .12); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.automation-panel-head i { color: #64dc83; font-style: normal; }
.automation-room { position: relative; min-height: 225px; padding: 2rem; overflow: hidden; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.automation-room > span { color: rgba(255, 255, 255, .45); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.automation-room > strong { margin-top: .55rem; font-family: "Sora", sans-serif; font-size: 2.1rem; font-weight: 500; letter-spacing: -.055em; }
.automation-room > small { margin-top: .4rem; color: var(--yellow); font-size: .65rem; }
.room-orbit { position: absolute; width: 210px; height: 210px; right: -20px; top: 8px; border: 1px solid rgba(255, 211, 41, .26); border-radius: 50%; }
.room-orbit::before, .room-orbit::after { position: absolute; content: ""; inset: 29px; border: 1px solid rgba(255, 211, 41, .18); border-radius: 50%; }
.room-orbit::after { inset: 67px; background: var(--yellow); box-shadow: 0 0 45px rgba(255, 211, 41, .5); }
.room-orbit i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }
.room-orbit i:nth-child(1) { top: 26px; left: 40px; }.room-orbit i:nth-child(2) { right: 8px; top: 100px; }.room-orbit i:nth-child(3) { left: 66px; bottom: 3px; }
.automation-controls > div { min-height: 78px; padding: .8rem .3rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .9rem; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.automation-controls > div:last-child { border-bottom: 0; }
.automation-controls svg { width: 26px; height: 26px; color: var(--yellow); }
.automation-controls strong { display: block; font-size: .73rem; }
.automation-controls small { margin-top: .2rem; display: block; color: rgba(255, 255, 255, .42); font-size: .61rem; }
.automation-controls > div > i { position: relative; width: 33px; height: 18px; border: 1px solid rgba(255, 255, 255, .26); border-radius: 99px; }
.automation-controls > div > i::after { position: absolute; content: ""; width: 10px; height: 10px; left: 3px; top: 3px; border-radius: 50%; background: rgba(255, 255, 255, .45); }
.automation-controls > div > i.toggle-on { border-color: var(--yellow); background: var(--yellow); }
.automation-controls > div > i.toggle-on::after { left: 18px; background: var(--ink); }

.guidance-section { padding: var(--section-space) 0; background: var(--white); }
.guidance-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 7rem; }
.guidance-title { position: sticky; top: 110px; align-self: start; }
.guidance-title h2 { font-size: clamp(2.8rem, 4.3vw, 4.6rem); }
.guidance-steps { margin: 0; padding: 0; list-style: none; }
.guidance-steps li { padding: 2.1rem 0; display: grid; grid-template-columns: 56px 1fr; gap: 1.3rem; border-top: 1px solid var(--line); }
.guidance-steps li:last-child { border-bottom: 1px solid var(--line); }
.guidance-steps li > span { color: var(--yellow-deep); font-size: .67rem; font-weight: 850; letter-spacing: .12em; }
.guidance-steps h3 { margin: 0; font-family: "Sora", sans-serif; font-size: 1.15rem; letter-spacing: -.035em; }
.guidance-steps p { margin: .6rem 0 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }

.store-section { padding: var(--section-space) 0; background: var(--paper-deep); }
.store-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; gap: clamp(3rem, 8vw, 7rem); }
.store-copy h2 { font-size: clamp(3.2rem, 5vw, 5rem); }
.store-copy > p:not(.eyebrow) { max-width: 490px; margin: 1.5rem 0 0; color: var(--muted); line-height: 1.7; }
.store-details { margin: 2.2rem 0 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.store-details > div { padding: 1.25rem 1rem 1.25rem 0; border-bottom: 1px solid var(--line); }
.store-details > div:first-child { grid-column: 1 / -1; }
.store-details dt { display: flex; align-items: center; gap: .55rem; color: var(--muted); font-size: .62rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.store-details dt svg { width: 16px; height: 16px; color: var(--yellow-deep); }
.store-details dd { margin: .7rem 0 0; padding-left: 1.55rem; font-size: .82rem; font-weight: 650; line-height: 1.55; }
.store-details dd strong { color: #168641; }
.store-details dd .status-dot { width: 6px; height: 6px; box-shadow: none; }
.store-details dd small { color: var(--muted); font-weight: 500; }
.store-actions { margin-top: 1.8rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; }
.phone-link { padding-bottom: .25rem; border-bottom: 1px solid var(--ink); font-size: .75rem; font-weight: 800; }
.location-card { position: relative; min-height: 610px; overflow: hidden; color: var(--ink); background: #dddcd3; border: 1px solid rgba(17, 18, 15, .12); }
.location-card::before { position: absolute; content: ""; inset: 0; opacity: .55; background-image: linear-gradient(rgba(17, 18, 15, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 18, 15, .07) 1px, transparent 1px); background-size: 42px 42px; }
.map-road { position: absolute; display: block; height: 22px; background: #f7f6f0; border: 1px solid rgba(17, 18, 15, .1); box-shadow: 0 0 0 6px rgba(255, 255, 255, .2); }
.road-one { width: 135%; left: -16%; top: 47%; transform: rotate(-13deg); }
.road-two { width: 115%; left: -8%; top: 68%; transform: rotate(21deg); }
.road-three { width: 82%; left: 10%; top: 19%; transform: rotate(68deg); }
.road-four { width: 65%; right: -14%; top: 23%; transform: rotate(-58deg); }
.map-label { position: absolute; z-index: 2; padding: .25rem .4rem; color: #85867f; background: rgba(221, 220, 211, .82); font-size: .55rem; font-weight: 750; }
.label-one { left: 38%; top: 39%; transform: rotate(-13deg); }.label-two { right: 12%; top: 68%; }
.map-pin { position: absolute; z-index: 3; left: 50%; top: 49%; min-width: 190px; padding: .85rem 1rem; display: flex; align-items: center; gap: .75rem; color: white; background: var(--ink); box-shadow: 0 20px 50px rgba(17, 18, 15, .25); transform: translate(-50%, -50%); }
.map-pin::after { position: absolute; content: ""; left: calc(50% - 7px); bottom: -7px; width: 14px; height: 14px; background: var(--ink); transform: rotate(45deg); }
.map-pin svg { width: 28px; height: 28px; color: var(--yellow); }
.map-pin span { font-family: "Sora", sans-serif; font-size: .9rem; font-weight: 650; }
.map-pin small { margin-top: .18rem; display: block; color: rgba(255, 255, 255, .5); font-family: "Inter", sans-serif; font-size: .55rem; font-weight: 550; }
.map-open { position: absolute; z-index: 3; right: 1rem; bottom: 1rem; padding: .75rem .9rem; display: flex; gap: .8rem; color: white; background: var(--ink); font-size: .67rem; font-weight: 800; }

.reviews-section { padding: var(--section-space) 0; color: var(--ink); background: var(--yellow); }
.reviews-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 6rem; }
.review-number { display: flex; align-items: end; gap: 1.5rem; }
.review-number > span { font-family: "Sora", sans-serif; font-size: clamp(7rem, 15vw, 12rem); font-weight: 500; line-height: .75; letter-spacing: -.1em; }
.review-number small { font-size: .7rem; font-weight: 850; line-height: 1.45; text-transform: uppercase; }
.review-copy .stars { font-size: .9rem; letter-spacing: .2em; }
.reviews-section h2 { max-width: 580px; font-size: clamp(2.2rem, 3.7vw, 3.8rem); }
.review-copy p { max-width: 510px; margin: 1.2rem 0 1.6rem; font-size: .9rem; line-height: 1.7; }

.instagram-section { padding: 2.5rem 0; background: var(--paper); }
.instagram-card { min-height: 270px; padding: clamp(2rem, 5vw, 4rem); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; color: white; background: linear-gradient(115deg, #11120f 0%, #282019 60%, #422316 100%); }
.instagram-card h2 { max-width: 720px; font-size: clamp(2.5rem, 4.5vw, 4.6rem); }
.instagram-card .eyebrow { color: rgba(255, 255, 255, .55); }
.instagram-card > a { min-width: 220px; min-height: 62px; padding: 0 1.1rem; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255, 255, 255, .25); font-size: .82rem; font-weight: 850; }
.instagram-card > a span { color: var(--yellow); }

.faq-section { padding: var(--section-space) 0; }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7rem; }
.faq-section h2 { font-size: clamp(3rem, 4.4vw, 4.5rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; list-style: none; cursor: pointer; font-family: "Sora", sans-serif; font-size: 1rem; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; border: 1px solid var(--line); font-family: "Inter", sans-serif; font-weight: 400; transition: transform .2s, background .2s; }
.faq-list details[open] summary span { background: var(--yellow); transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -.1rem 0 1.6rem; padding-right: 3rem; color: var(--muted); font-size: .87rem; line-height: 1.7; }

.final-cta { position: relative; padding: clamp(5rem, 10vw, 9rem) 0; overflow: hidden; color: white; background: var(--ink); }
.final-grid { position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(circle at 70% 50%, black, transparent 68%); }
.final-content { position: relative; text-align: center; }
.final-content .eyebrow { color: var(--yellow); }
.final-content h2 { font-size: clamp(3.4rem, 7vw, 7.2rem); }
.final-content > div { margin-top: 2.2rem; display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; }

.site-footer { padding: 4rem 0 1.2rem; color: white; background: #090a08; }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr .65fr .65fr; gap: 4rem; }
.footer-brand img { width: 165px; height: auto; }
.footer-brand strong { margin-top: .8rem; display: block; color: var(--yellow); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-brand p { max-width: 330px; margin: .8rem 0 0; color: rgba(255, 255, 255, .45); font-size: .76rem; line-height: 1.6; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
.footer-main small { margin-bottom: .35rem; color: var(--yellow); font-size: .6rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-main a { color: rgba(255, 255, 255, .65); font-size: .72rem; line-height: 1.65; }
.footer-main a:hover { color: white; }
.footer-bottom { margin-top: 3rem; padding-top: 1rem; display: flex; justify-content: space-between; gap: 1rem; color: rgba(255, 255, 255, .32); border-top: 1px solid rgba(255, 255, 255, .1); font-size: .61rem; }
.footer-bottom button { padding: 0; color: inherit; border: 0; background: none; cursor: pointer; }

.whatsapp-dock { position: fixed; z-index: 100; right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); width: 66px; height: 76px; transition: width .35s ease, opacity .2s, transform .2s; }
.whatsapp-dock.is-expanded { width: 254px; }
.whatsapp-dock.is-hidden { display: none; }
.whatsapp-dismiss { position: absolute; z-index: 2; top: 0; right: 0; width: 24px; height: 24px; padding: 0; display: grid; place-items: center; color: var(--muted); border: 1px solid var(--line); border-radius: 50%; background: white; box-shadow: 0 5px 15px rgba(7, 25, 47, .12); cursor: pointer; }
.whatsapp-float { position: absolute; right: 2px; bottom: 0; width: 58px; height: 58px; overflow: hidden; display: flex; align-items: center; justify-content: flex-end; gap: .75rem; color: white; border: 2px solid rgba(255, 255, 255, .82); border-radius: 999px; background: var(--green); box-shadow: 0 14px 35px rgba(15, 130, 61, .3); transition: width .35s ease, padding .35s ease; }
.whatsapp-dock.is-expanded .whatsapp-float { width: 246px; padding-left: 1rem; }
.whatsapp-float svg { width: 54px; height: 54px; padding: 13px; flex: 0 0 54px; fill: currentColor; stroke: none; }
.whatsapp-label { min-width: 0; width: 0; opacity: 0; display: flex; flex-direction: column; gap: .1rem; white-space: nowrap; transform: translateX(12px); transition: width .35s ease, opacity .25s ease, transform .35s ease; }
.whatsapp-label small { color: rgba(255, 255, 255, .72); font-size: .54rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.whatsapp-label strong { font-size: .75rem; }
.whatsapp-dock.is-expanded .whatsapp-label { width: 168px; opacity: 1; transform: none; }
body.footer-visible .whatsapp-dock { opacity: 0; transform: translateY(10px); pointer-events: none; }

.consent-banner { position: fixed; z-index: 250; left: 50%; bottom: max(16px, env(safe-area-inset-bottom)); width: min(670px, calc(100% - 32px)); padding: 1rem; display: flex; align-items: center; gap: 1.2rem; color: white; background: #171813; border: 1px solid rgba(255, 255, 255, .18); box-shadow: 0 20px 60px rgba(0, 0, 0, .28); transform: translateX(-50%); }
.consent-banner p { margin: 0; color: rgba(255, 255, 255, .6); font-size: .68rem; line-height: 1.55; }
.consent-banner p strong { display: block; color: white; }
.consent-actions { display: flex; gap: .45rem; }
.consent-actions button { min-height: 38px; padding: 0 .8rem; color: white; border: 1px solid rgba(255, 255, 255, .22); background: transparent; font-size: .63rem; font-weight: 800; cursor: pointer; }
.consent-actions [data-consent-accept] { color: var(--ink); border-color: var(--yellow); background: var(--yellow); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

@keyframes heroSettle { to { transform: scale(1); } }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: grid; }
  .hero-shell { width: min(var(--max), calc(100% - 96px)); grid-template-columns: 1fr .55fr; gap: 2rem; }
  .section-heading { grid-template-columns: 1.25fr .75fr; gap: 2rem; }
  .guidance-grid, .faq-layout { gap: 4rem; }
  .store-layout { gap: 3rem; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-main > div:last-child { display: none; }
}

@media (max-width: 820px) {
  :root { --section-space: 5rem; }
  .section-shell { width: min(var(--max), calc(100% - 32px)); }
  .site-header { height: 70px; padding-inline: 16px; }
  .brand img { width: 126px; }
  .brand > span { font-size: .57rem; }
  .hero { min-height: 780px; }
  .hero-photo { background-position: 58% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(10, 11, 9, .94) 0%, rgba(10, 11, 9, .68) 68%, rgba(10, 11, 9, .36) 100%), linear-gradient(0deg, rgba(10, 11, 9, .8), transparent 65%); }
  .hero-rail { display: none; }
  .hero-shell { width: calc(100% - 32px); margin-bottom: 5rem; grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-copy { max-width: 650px; }
  .hero h1 { font-size: clamp(3.4rem, 11vw, 5.6rem); }
  .hero-card { max-width: 390px; }
  .hero-scroll { display: none; }
  .trust-strip-inner { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .trust-strip-inner > * { min-height: 100px; padding: 1rem 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .13); }
  .trust-strip-inner > *:last-child { border-bottom: 0; }
  .section-heading, .automation-layout, .guidance-grid, .store-layout, .reviews-layout, .faq-layout { grid-template-columns: 1fr; }
  .section-heading { gap: 1.5rem; }
  .section-heading p:last-child { max-width: 580px; }
  .material-grid { grid-template-columns: repeat(2, 1fr); }
  .automation-layout { gap: 3rem; }
  .automation-intro { max-width: 650px; }
  .guidance-grid, .faq-layout { gap: 3rem; }
  .guidance-title { position: static; }
  .store-layout { gap: 3.5rem; }
  .location-card { min-height: 480px; }
  .reviews-layout { gap: 3rem; }
  .review-number > span { font-size: clamp(7rem, 26vw, 11rem); }
  .instagram-card { grid-template-columns: 1fr; align-items: start; }
  .instagram-card > a { width: 100%; min-width: 0; }
  .footer-main { grid-template-columns: 1.4fr 1fr; }
  .footer-main > div:nth-child(3) { display: none; }
}

@media (max-width: 560px) {
  :root { --section-space: 4.25rem; }
  .site-header { height: 66px; }
  .site-header.scrolled, body.menu-open .site-header { height: 66px; }
  .brand { gap: .55rem; }
  .brand img { width: 108px; }
  .brand > span { max-width: 94px; padding-left: .55rem; font-size: .49rem; }
  .mobile-menu { padding: 90px 16px 24px; }
  .mobile-menu-foot { inset-inline: 16px; }
  .hero { min-height: 740px; }
  .hero-photo { background-position: 61% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(10, 11, 9, .95), rgba(10, 11, 9, .62)), linear-gradient(0deg, rgba(10, 11, 9, .88), transparent 70%); }
  .hero-shell { margin-bottom: 2rem; gap: 1.5rem; }
  .hero h1 { font-size: clamp(3.25rem, 15vw, 4.65rem); }
  .hero-lead { font-size: .94rem; line-height: 1.6; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-card { width: 100%; }
  .section-heading h2, .automation-intro h2, .guidance-title h2, .store-copy h2, .faq-section h2 { font-size: clamp(2.65rem, 12vw, 3.6rem); }
  .material-grid { margin-top: 3rem; grid-template-columns: 1fr; }
  .material-card { min-height: 240px; }
  .material-card-featured { min-height: 370px; grid-row: auto; }
  .materials-cta { align-items: flex-start; flex-direction: column; }
  .automation-section::before { background-size: 54px 54px; }
  .automation-intro .button { width: 100%; }
  .automation-panel { padding: .8rem; }
  .automation-room { min-height: 195px; padding: 1.2rem; }
  .room-orbit { width: 165px; height: 165px; right: -35px; top: 15px; }
  .room-orbit::after { inset: 52px; }
  .automation-room > strong { max-width: 150px; font-size: 1.7rem; }
  .guidance-steps li { grid-template-columns: 40px 1fr; }
  .store-details { grid-template-columns: 1fr; }
  .store-details > div { grid-column: auto !important; }
  .store-actions .button { width: 100%; }
  .location-card { min-height: 390px; }
  .review-number { align-items: center; gap: .8rem; }
  .review-number > span { font-size: 7rem; }
  .instagram-section { padding: 1rem 0; }
  .instagram-card { width: calc(100% - 20px); min-height: 320px; padding: 1.6rem; }
  .instagram-card h2 { font-size: 2.55rem; }
  .faq-list summary { min-height: 76px; font-size: .9rem; }
  .faq-list details p { padding-right: 0; }
  .final-content h2 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .final-content .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-main > div:nth-child(2) { display: flex; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-dock { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); width: 62px; height: 70px; }
  .whatsapp-dock.is-expanded { width: min(226px, calc(100vw - 20px)); }
  .whatsapp-float { width: 54px; height: 54px; }
  .whatsapp-dock.is-expanded .whatsapp-float { width: min(218px, calc(100vw - 28px)); }
  .whatsapp-float svg { width: 50px; height: 50px; padding: 12px; flex-basis: 50px; }
  .whatsapp-dock.is-expanded .whatsapp-label { width: 146px; }
  .consent-banner { align-items: stretch; flex-direction: column; }
  .consent-actions button { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ; }
.button::before { position: absolute; content: ""; inset: -55% auto -55% -45%; width: 24%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent); transform: rotate(18deg); transition: left .65s ease; }
.button:hover::before { left: 125%; }
.button-outline { color: white; border-color: rgba(255, 255, 255, .34); background: rgba(6, 25, 52, .2); }
.button-dark { background: var(--navy); }
.text-link { color: #a96f00; }

.site-header { height: 82px; padding-inline: max(24px, calc((100vw - 1220px) / 2)); grid-template-columns: 1fr auto 1fr; border-bottom-color: transparent; }
.site-header.scrolled, body.menu-open .site-header { height: 68px; color: var(--ink); background: rgba(255, 255, 255, .95); border-bottom: 1px solid var(--line); box-shadow: 0 12px 35px rgba(7, 25, 47, .07); }
.brand { gap: .7rem; }
.brand img { width: 126px; filter: brightness(0) invert(1); transition: filter .25s; }
.brand > span { max-width: 112px; padding-left: .7rem; color: rgba(255, 255, 255, .7); border-left-color: rgba(255, 255, 255, .25); font-size: .58rem; }
.site-header.scrolled .brand img, body.menu-open .brand img { filter: brightness(0) saturate(100%) invert(12%) sepia(25%) saturate(1300%) hue-rotate(176deg) brightness(87%) contrast(102%); }
.site-header.scrolled .brand > span, body.menu-open .brand > span { color: var(--muted); border-left-color: var(--line); }
.desktop-nav { gap: clamp(1rem, 2.6vw, 2.2rem); }
.desktop-nav a { color: inherit; font-size: .77rem; }
.header-cta { min-height: auto; padding: .72rem .95rem; color: white; border: 1px solid rgba(255, 255, 255, .35); border-radius: 999px; background: transparent; }
.header-cta span { color: var(--yellow); }
.site-header.scrolled .header-cta { color: var(--ink); border-color: var(--line); }
.menu-button { border-radius: 50%; background: rgba(7, 25, 47, .2); }
.site-header.scrolled .menu-button, body.menu-open .menu-button { color: var(--ink); border-color: var(--line); background: white; }
.mobile-menu { padding: 92px 20px 30px; color: var(--ink); background: rgba(247, 246, 241, .98); backdrop-filter: blur(18px); }
.mobile-menu nav a { border-bottom-color: var(--line); }
.mobile-menu nav a span { color: var(--yellow-deep); }
.mobile-menu-foot { color: var(--muted); }

.hero { min-height: min(790px, 100svh); align-items: center; background: var(--navy); isolation: isolate; }
.hero-photo { z-index: -3; background-position: 58% center; transform: none; animation: heroBreathBrand 18s alternate infinite ease-in-out; }
.hero-overlay { z-index: -2; background: linear-gradient(90deg, rgba(2, 13, 30, .96) 0%, rgba(3, 20, 42, .86) 48%, rgba(3, 19, 39, .42) 100%), linear-gradient(0deg, rgba(3, 16, 36, .72), transparent 45%); }
.hero-overlay::after, .hero-rail, .hero-scroll { display: none; }
.hero-shell { width: min(1220px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0 54px; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .55fr); align-items: center; gap: clamp(2.5rem, 5vw, 5.5rem); }
.hero h1 { max-width: 820px; font-size: clamp(3.65rem, 6.2vw, 6.15rem); font-weight: 520; }
.hero h1 em { color: var(--yellow); }
.hero-lead { max-width: 680px; margin-top: 1.35rem; font-size: 1rem; }
.hero-actions { margin-top: 1.8rem; }
.hero-card { padding: 1.4rem; border-color: rgba(255, 255, 255, .18); border-radius: 34px; background: linear-gradient(155deg, rgba(23, 49, 81, .92), rgba(4, 21, 43, .9)); box-shadow: 0 30px 90px rgba(0, 0, 0, .28); }
.hero-card-top { min-height: 58px; }
.hero-card > a { min-height: 72px; }

.trust-strip { color: white; background: var(--navy); }
.trust-strip-inner { width: min(1220px, 100%); grid-template-columns: 1.05fr 1fr 1fr; border-inline: 1px solid rgba(255, 255, 255, .12); }
.trust-strip-inner > * { min-height: 100px; border-right-color: rgba(255, 255, 255, .12); }
.trust-strip-inner > *:first-child { padding-left: 1.4rem; }
.trust-strip-inner > *:last-child { padding-right: 1.4rem; }

.materials-section { padding: var(--section-space) 0; }
.section-heading { max-width: 960px; display: block; }
.section-heading h2 { max-width: 900px; font-size: clamp(2.75rem, 4.3vw, 4.25rem); }
.section-heading p:last-child { max-width: 570px; margin: 1.2rem 0 0; }
.material-grid { margin-top: 2.2rem; grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto; gap: .85rem; border: 0; }
.material-card, .material-card-featured { min-height: 238px; padding: 1.15rem; grid-row: auto; color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 16px 42px rgba(7, 25, 47, .05); transform: perspective(950px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0)); transition: transform .24s ease, border-color .25s, box-shadow .25s, background .25s; }
.material-card:hover { --lift: -6px; color: var(--ink); border-color: rgba(228, 154, 0, .32); background: white; box-shadow: 0 28px 62px rgba(5, 22, 45, .13); }
.material-card > span, .material-card-featured > span { color: var(--yellow-deep); }
.material-card > svg, .material-card-featured > svg { width: 52px; height: 52px; margin-top: .6rem; color: var(--yellow-deep); }
.material-card > div { padding-top: 2rem; }
.material-card h3, .material-card-featured h3 { font-size: 1.17rem; }
.material-card p, .material-card-featured p { color: var(--muted); }
.material-card-featured { background: linear-gradient(145deg, #fff8d8, #fff); }
.material-card-featured::before { width: 180px; height: 180px; right: -70px; top: -55px; border-color: rgba(228, 154, 0, .22); box-shadow: 0 0 0 35px rgba(255, 211, 63, .07); }
.material-card-featured > i { margin-top: .65rem; color: var(--yellow-deep); }
.materials-cta { margin-top: .85rem; padding: 1.25rem 1.4rem; border: 1px solid rgba(228, 154, 0, .2); border-radius: 20px; background: #fff8d8; }

.automation-section { padding: var(--section-space) 0; background: var(--navy); }
.automation-section::before { opacity: .25; background-size: 72px 72px; }
.automation-glow { background: rgba(255, 211, 63, .13); animation: ambientBrand 8s ease-in-out infinite alternate; }
.automation-layout { grid-template-columns: .76fr 1.24fr; gap: clamp(2.2rem, 5vw, 5rem); }
.automation-intro h2 { font-size: clamp(2.75rem, 4.3vw, 4.25rem); font-weight: 520; }
.automation-panel { border-radius: 30px; background: linear-gradient(155deg, rgba(23, 49, 81, .96), rgba(4, 21, 43, .94)); box-shadow: 0 30px 90px rgba(0, 0, 0, .25); }
.automation-room { border-radius: 20px; background: rgba(255, 255, 255, .035); }
.room-orbit { animation: orbitBrand 16s linear infinite; }
.automation-controls > div { padding-inline: .7rem; }

.guidance-section { padding: var(--section-space) 0; color: var(--ink); background: var(--paper); }
.guidance-grid { display: block; }
.guidance-title { position: static; max-width: 880px; }
.guidance-title h2 { font-size: clamp(2.75rem, 4.3vw, 4.25rem); }
.guidance-steps { margin-top: 2.2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
.guidance-steps li { min-height: 205px; padding: 1.25rem; display: flex; flex-direction: column; gap: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 16px 42px rgba(7, 25, 47, .05); transition: transform .25s, box-shadow .25s; }
.guidance-steps li:last-child { border-bottom: 1px solid var(--line); }
.guidance-steps li:hover { transform: translateY(-5px); box-shadow: 0 25px 55px rgba(7, 25, 47, .1); }
.guidance-steps li > span { margin-bottom: auto; }

.store-section { padding: var(--section-space) 0; color: var(--ink); background: #eef2f4; }
.store-layout { grid-template-columns: .88fr 1.12fr; gap: clamp(2.5rem, 5vw, 5rem); }
.store-copy h2 { font-size: clamp(2.75rem, 4.3vw, 4.25rem); font-weight: 520; }
.store-details { gap: .65rem; border: 0; }
.store-details > div { padding: 1rem; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .72); }
.store-details > div:first-child { grid-column: 1 / -1; }
.store-details dd { padding-left: 1.4rem; }
.location-card { min-height: 560px; border: 8px solid white; border-radius: 30px; background: #dce5e9; box-shadow: 0 25px 60px rgba(7, 25, 47, .12); transform: perspective(950px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform .25s ease, box-shadow .25s; }
.location-card:hover { box-shadow: 0 32px 75px rgba(7, 25, 47, .17); }
.location-card::before, .map-road, .map-label { display: none; }
.location-card iframe { width: 100%; height: 100%; min-height: 544px; display: block; border: 0; border-radius: 22px; filter: saturate(.75) contrast(.94); }
.map-pin { left: 1.1rem; top: 1.1rem; min-width: 180px; border-radius: 16px; background: var(--navy); transform: none; animation: mapPinBrand 3s ease-in-out infinite; }
.map-pin::after { display: none; }
.map-open { right: 1.1rem; bottom: 1.1rem; border-radius: 999px; background: var(--navy); box-shadow: 0 12px 30px rgba(7, 25, 47, .22); }

.reviews-section { padding: var(--section-space) 0; color: var(--ink); background: var(--paper); }
.reviews-layout { padding: clamp(2rem, 5vw, 4.2rem); gap: 4rem; border: 1px solid var(--line); border-radius: 34px; background: white; box-shadow: 0 22px 58px rgba(7, 25, 47, .07); }
.review-number { min-height: 250px; padding: 1.5rem; align-items: end; border-radius: var(--radius); background: var(--yellow); }
.review-number > span { font-size: clamp(6.2rem, 11vw, 9rem); }
.review-copy .google-mark { color: var(--yellow-deep); }
.reviews-section h2 { font-size: clamp(2.25rem, 3.5vw, 3.45rem); }

.instagram-section { padding: 1.2rem 0 calc(var(--section-space) * .45); }
.instagram-card { min-height: 260px; border-radius: 34px; background: linear-gradient(135deg, var(--navy), var(--navy-2)); box-shadow: 0 24px 60px rgba(7, 25, 47, .15); }
.instagram-card::after { position: absolute; content: ""; width: 260px; height: 260px; right: 8%; border: 1px solid rgba(255, 211, 63, .18); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255, 211, 63, .035), 0 0 0 100px rgba(255, 211, 63, .02); }
.instagram-card { position: relative; overflow: hidden; }
.instagram-card > * { position: relative; z-index: 1; }
.instagram-card h2 { font-size: clamp(2.55rem, 4vw, 4rem); }
.instagram-card > a { border-radius: 999px; }

.faq-section { padding: calc(var(--section-space) * .55) 0 var(--section-space); color: var(--ink); }
.faq-layout { grid-template-columns: .7fr 1fr; gap: clamp(2.5rem, 8vw, 8rem); }
.faq-section h2 { font-size: clamp(2.75rem, 4vw, 3.95rem); }
.faq-list summary { min-height: 72px; font-family: "Inter", sans-serif; font-weight: 700; }
.faq-list summary span { border: 0; color: var(--yellow-deep); }
.faq-list details[open] summary span { background: transparent; }

.final-cta { min-height: 430px; padding: var(--section-space) max(24px, calc((100vw - 1220px) / 2)); background: var(--navy); }
.final-content h2 { font-size: clamp(3rem, 5.6vw, 5.55rem); font-weight: 520; }
.final-grid { opacity: .22; }

.site-footer { padding: 3.2rem 0 1rem; background: var(--navy); }
.footer-main { grid-template-columns: 1.5fr 1fr .65fr .65fr; }
.footer-brand img { width: 145px; }
.footer-bottom { margin-top: 2.2rem; }
.consent-banner { border-radius: 20px; background: rgba(6, 25, 52, .98); }
.consent-actions button { border-radius: 999px; }

.reveal { opacity: 0; transform: perspective(1000px) translateY(26px) rotateX(4deg) scale(.985); transform-origin: center bottom; transition: opacity .72s, transform .78s cubic-bezier(.2, .8, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.status-dot { animation: statusBrand 2.4s ease-out infinite; }
.status-dot.is-closed { background: #d45a5a; box-shadow: 0 0 0 5px rgba(212, 90, 90, .14); animation: none; }

@keyframes heroBreathBrand { to { transform: scale(1.055) translate3d(-.4%, -.25%, 0); } }
@keyframes ambientBrand { from { transform: translate3d(-3%, -2%, 0) scale(.9); opacity: .45; } to { transform: translate3d(8%, 6%, 0) scale(1.15); opacity: 1; } }
@keyframes orbitBrand { to { transform: rotate(360deg); } }
@keyframes mapPinBrand { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes statusBrand { 0% { box-shadow: 0 0 0 0 rgba(89, 219, 126, .3); } 70%, 100% { box-shadow: 0 0 0 8px rgba(89, 219, 126, 0); } }

@media (max-width: 1000px) {
  :root { --section-space: 3rem; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: grid; }
  .hero-shell { grid-template-columns: 1fr .5fr; gap: 2.5rem; }
  .hero h1 { font-size: clamp(4rem, 8.4vw, 6rem); }
  .automation-layout { grid-template-columns: .72fr 1.28fr; gap: 2.5rem; }
  .store-layout { gap: 2.5rem; }
}

@media (max-width: 760px) {
  :root { --section-space: 2.5rem; --radius: 20px; }
  .section-shell { width: calc(100% - 32px); }
  .site-header, .site-header.scrolled, body.menu-open .site-header { height: 68px; padding-inline: 16px; }
  .brand img { width: 112px; }
  .brand > span { max-width: 100px; font-size: .5rem; }
  .hero { min-height: auto; align-items: flex-end; }
  .hero-photo { background-position: 62% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(3, 16, 36, .25), rgba(3, 16, 36, .78) 35%, rgba(3, 16, 36, .98) 72%); }
  .hero-shell { width: calc(100% - 32px); padding: 102px 0 46px; grid-template-columns: 1fr; gap: 1.25rem; }
  .hero h1 { font-size: clamp(3rem, 13.8vw, 4rem); }
  .hero-lead { font-size: .9rem; line-height: 1.6; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-card { max-width: none; padding: 1.05rem; border-radius: 26px; }
  .trust-strip-inner { width: 100%; grid-template-columns: 1fr 1fr; }
  .trust-strip-inner > * { min-height: 92px; padding: .8rem; border-right: 1px solid rgba(255, 255, 255, .12); border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .trust-strip-inner > *:first-child { grid-column: 1 / -1; padding-left: .8rem; }
  .trust-strip-inner > *:last-child { padding-right: .8rem; border-right: 0; }
  .section-heading h2, .automation-intro h2, .guidance-title h2, .store-copy h2, .faq-section h2 { font-size: clamp(2.45rem, 11vw, 3.5rem); }
  .material-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .material-card, .material-card-featured { min-height: 215px; padding: .9rem; }
  .material-card > svg, .material-card-featured > svg { width: 42px; height: 42px; }
  .material-card > div { padding-top: 1.3rem; }
  .material-card h3, .material-card-featured h3 { font-size: 1rem; }
  .material-card p, .material-card-featured p { font-size: .72rem; }
  .materials-cta { align-items: flex-start; flex-direction: column; }
  .automation-layout, .store-layout, .reviews-layout, .faq-layout { grid-template-columns: 1fr; }
  .automation-layout { gap: 1.5rem; }
  .automation-panel { border-radius: 26px; }
  .guidance-steps { grid-template-columns: 1fr; gap: .65rem; }
  .guidance-steps li { min-height: 155px; }
  .store-layout { gap: 2rem; }
  .location-card { min-height: 400px; border-width: 6px; border-radius: 26px; }
  .location-card iframe { min-height: 388px; border-radius: 20px; }
  .reviews-layout { padding: 1rem; gap: 1.5rem; border-radius: 26px; }
  .review-number { min-height: 190px; }
  .review-number > span { font-size: clamp(6.5rem, 29vw, 9rem); }
  .instagram-card { width: calc(100% - 32px); border-radius: 26px; }
  .faq-layout { gap: 2.2rem; }
  .final-cta { min-height: auto; padding: 3rem 16px 2.5rem; }
  .final-content h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .final-content > div { flex-direction: column; }
  .final-content .button { width: 100%; }
  .footer-main { grid-template-columns: 1.4fr 1fr; gap: 2rem; }
  .footer-main > div:last-child { display: none; }
}

@media (max-width: 430px) {
  .brand > span { max-width: 88px; }
  .hero h1 { font-size: clamp(2.85rem, 13.2vw, 3.65rem); }
  .material-grid { grid-template-columns: 1fr; }
  .material-card, .material-card-featured { min-height: 185px; }
  .store-details { grid-template-columns: 1fr; }
  .store-details > div { grid-column: auto !important; }
  .store-actions .button { width: 100%; }
  .location-card { min-height: 350px; }
  .location-card iframe { min-height: 338px; }
  .map-pin { min-width: 155px; padding: .7rem .8rem; }
  .map-open { right: .65rem; bottom: .65rem; }
  .instagram-card { width: calc(100% - 20px); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main > div:nth-child(3) { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo, .automation-glow, .room-orbit, .map-pin, .status-dot { animation: none !important; }
  .material-card, .location-card { transform: none !important; }
}
                               
