@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/poppins-300.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/poppins-600.woff2') format('woff2'); }

:root {
    --graphite: #0A0A0A;
    --surface: #111111;
    --surface-2: #161616;
    --line: rgba(255, 255, 255, 0.10);
    --white: #FFFFFF;
    --muted: rgba(255, 255, 255, 0.60);
    --muted-2: rgba(255, 255, 255, 0.42);

    --green: #009B3A;
    --yellow: #FEDF00;
    --blue: #2D7DD2;
    --whats-green: #00822E;
    --whats-glow: #25D366;

    --container: 1180px;
    --radius: 18px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --lift: -4px;
    --shadow-card: 0 22px 50px -18px rgba(0, 0, 0, 0.65);
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

[hidden] { display: none !important; }

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }

body {
    margin: 0;
    background: var(--graphite);
    color: var(--white);
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.1px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
body.is-nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px;
}

.skip-link {
    position: absolute;
    left: -9999px; top: 0;
    background: var(--white);
    color: var(--graphite);
    padding: 10px 16px;
    border-radius: 0 0 8px 0;
    z-index: 200;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

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

.js [data-reveal] {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
    filter: blur(10px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, filter;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; filter: blur(0); }

.logo { display: inline-flex; flex-direction: column; gap: 6px; width: max-content; }
.logo__lockup {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-weight: 300;
    font-size: 1.35rem;
    letter-spacing: 0.42em;
    padding-left: 0.42em;
}
.logo__br { font-weight: 600; letter-spacing: 0.2em; }
.logo__bar {
    display: flex;
    height: 2px;
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.logo:hover .logo__bar { transform: scaleX(1.06); }
.logo__bar i { flex: 1; height: 100%; }

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    min-height: 44px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.4s var(--ease), background 0.3s var(--ease),
                color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.btn__label { position: relative; z-index: 1; white-space: nowrap; }
.btn--sm { padding: 9px 18px; min-height: 38px; font-size: 0.85rem; }
.hero__actions .btn, .cta-band .btn { padding: 15px 32px; min-height: 52px; font-size: 0.98rem; }
.btn--primary {
    background: var(--white); color: var(--graphite);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.16), 0 10px 24px -12px rgba(0, 0, 0, 0.55);
}
.btn--primary::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.7s var(--ease);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18), 0 16px 34px -12px rgba(0, 0, 0, 0.6); }
.btn--primary:hover::before { transform: translateX(120%); }
.btn--primary:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn--ghost:hover { transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.04); }
.btn--ghost:active { transform: translateY(0); }
.btn__icon { flex: 0 0 auto; width: 1.15em; height: 1.15em; }
.btn--whats {
    background: var(--whats-green); color: var(--white);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2), 0 10px 24px -12px rgba(0, 40, 15, 0.65);
}
.btn--whats::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
    transform: translateX(-120%); transition: transform 0.7s var(--ease);
}
.btn--whats:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22), 0 18px 40px -14px rgba(0, 40, 15, 0.7), 0 0 0 4px rgba(37, 211, 102, 0.18);
}
.btn--whats:hover::before { transform: translateX(120%); }
.btn--whats:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.26); }
@media (max-width: 880px) { .btn--sm { min-height: 44px; padding-block: 11px; } }

.curtain {
    position: fixed; inset: 0; z-index: 9000; pointer-events: none;
    background: radial-gradient(125% 85% at 50% 0%, #1b1b1b 0%, #060606 62%);
    transform: scaleY(0); transform-origin: top; will-change: transform;
}
.curtain__mark {
    position: absolute; left: 50%; top: 50%; width: 132px; height: 4px;
    margin: -2px 0 0 -66px; border-radius: 4px; opacity: 0;
    background: linear-gradient(90deg, var(--green) 0 34%, var(--yellow) 34% 67%, var(--blue) 67% 100%);
}
.curtain.is-pulling { animation: curtain-cover 0.46s cubic-bezier(0.76, 0, 0.24, 1) forwards; transform-origin: top; }
.curtain.is-pulling .curtain__mark { animation: curtain-mark 0.46s ease forwards; }
html.is-transitioning .curtain { transform: scaleY(1); transform-origin: bottom; }
.curtain.is-revealing { animation: curtain-reveal 0.52s cubic-bezier(0.76, 0, 0.24, 1) forwards; transform-origin: bottom; }
@keyframes curtain-cover { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes curtain-reveal { from { transform: scaleY(1); } to { transform: scaleY(0); } }
@keyframes curtain-mark { 0% { opacity: 0; } 55% { opacity: 1; } 100% { opacity: 0.85; } }
@media (prefers-reduced-motion: reduce) { .curtain { display: none !important; } }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    padding-block: 18px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
                backdrop-filter 0.4s var(--ease), transform 0.45s var(--ease);
}
.site-header.is-scrolled {
    background: rgba(10, 10, 10, 0.62);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    backdrop-filter: saturate(180%) blur(22px);
    border-bottom-color: var(--line);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}
.site-header.is-hidden { transform: translateY(-100%); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-nav { display: flex; gap: 34px; font-size: 0.9rem; color: var(--muted); }
.site-nav a { position: relative; padding-block: 4px; transition: color 0.25s var(--ease); }
.site-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease);
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.site-nav__group { position: relative; }
.site-nav__trigger { display: inline-flex; align-items: center; gap: 5px; }
.site-nav__caret { width: 12px; height: 12px; transition: transform 0.35s var(--ease); }
.site-nav__group:hover .site-nav__caret,
.site-nav__group:focus-within .site-nav__caret { transform: rotate(180deg); }
.submenu {
    position: absolute; top: calc(100% + 16px); left: 0;
    width: 720px; max-width: 92vw;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.34s var(--ease), transform 0.34s var(--ease), visibility 0s linear 0.34s;
    z-index: 60;
}
.submenu::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.site-nav__group:hover .submenu,
.site-nav__group:focus-within .submenu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}
.submenu__inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
    padding: 14px; border-radius: 20px;
    background: rgba(13, 13, 13, 0.98);
    -webkit-backdrop-filter: saturate(160%) blur(26px); backdrop-filter: saturate(160%) blur(26px);
    border: 1px solid var(--line); box-shadow: 0 34px 90px rgba(0, 0, 0, 0.62);
}
.submenu__item {
    display: flex; align-items: flex-start; gap: 14px; padding: 13px 14px; border-radius: 14px;
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background 0.25s var(--ease);
}
.submenu__icon {
    flex: 0 0 42px; display: grid; place-items: center; width: 42px; height: 42px;
    border-radius: 12px; background: var(--surface-2); border: 1px solid var(--line); color: var(--muted);
    transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.35s var(--ease);
}
.submenu__icon svg { width: 21px; height: 21px; }
.submenu__item:hover .submenu__icon { background: rgba(0, 155, 58, 0.14); border-color: rgba(0, 155, 58, 0.32); color: var(--green); transform: translateY(-2px); }
.submenu__text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.site-nav__group:hover .submenu__item,
.site-nav__group:focus-within .submenu__item {
    opacity: 1; transform: none;
    transition-delay: calc(var(--i) * 45ms + 70ms);
}
.submenu__item:hover { background: rgba(255, 255, 255, 0.05); }
.submenu__name { font-size: 0.98rem; font-weight: 500; color: var(--white); }
.submenu__desc { font-size: 0.78rem; font-weight: 300; line-height: 1.4; color: var(--muted-2); }
.submenu__all {
    grid-column: 1 / -1; margin-top: 4px; padding: 14px 15px;
    display: inline-flex; align-items: center; gap: 8px;
    border-top: 1px solid var(--line); color: var(--muted); font-size: 0.86rem; font-weight: 500;
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.25s var(--ease);
}
.submenu__all i { font-style: normal; transition: transform 0.3s var(--ease); }
.submenu__all:hover i { transform: translateX(5px); }
.site-nav__group:hover .submenu__all,
.site-nav__group:focus-within .submenu__all {
    opacity: 1; transform: none;
    transition-delay: calc(var(--i) * 45ms + 70ms);
}
.submenu__all:hover { color: var(--white); }
.submenu a::after { content: none; }
.site-header__cta { padding: 10px 22px; font-size: 0.88rem; }

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-toggle:hover { border-color: rgba(255, 255, 255, 0.32); }
.nav-toggle__bars { display: flex; flex-direction: column; gap: 5px; width: 20px; }
.nav-toggle__bars span {
    display: block;
    height: 1.5px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 150;
    display: flex;
    justify-content: flex-end;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.mobile-nav__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(100%, 420px);
    height: 100%;
    padding: 24px 28px calc(28px + env(safe-area-inset-bottom));
    background: var(--graphite);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.mobile-nav.is-open .mobile-nav__overlay { opacity: 1; }
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 48px;
}
.mobile-nav__close {
    position: relative;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.3s var(--ease);
}
.mobile-nav__close:hover { border-color: rgba(255, 255, 255, 0.32); }
.mobile-nav__close span {
    position: absolute;
    left: 50%; top: 50%;
    width: 18px; height: 1.5px;
    background: var(--white);
    border-radius: 2px;
}
.mobile-nav__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-nav__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--white);
    border-bottom: 1px solid var(--line);
    transition: color 0.25s var(--ease), padding-left 0.3s var(--ease);
}
.mobile-nav__links a:hover { padding-left: 8px; color: var(--muted); }
.mobile-nav__sub { list-style: none; margin: 0 0 6px; padding-left: 16px; display: flex; flex-direction: column; border-left: 1px solid var(--line); }
.mobile-nav__sub a { font-size: 1.05rem; font-weight: 300; color: var(--muted); padding: 10px 0; border-bottom: 0; }
.mobile-nav__sub a:hover { color: var(--white); }
.mobile-nav__cta { margin-top: auto; width: 100%; }

.hero {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    padding-bottom: 64px;
    overflow: hidden;
}
.hero__glow {
    position: absolute;
    top: 8%; right: -8%;
    width: 640px; height: 640px;
    background: radial-gradient(circle, rgba(45, 125, 210, 0.22), transparent 62%);
    filter: blur(24px);
    pointer-events: none;
    animation: glowFloat 9s ease-in-out infinite;
}
@keyframes glowFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
    50% { transform: translate3d(-24px, 28px, 0) scale(1.08); opacity: 1; }
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 48px;
}
.hero__eyebrow {
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 22px;
}
.hero__title { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero__title .line__i { display: block; }
.hero__title .line--alt .line__i { color: rgba(255, 255, 255, 0.74); }
/* Headline em máscara: linhas sobem de dentro do clip (disparado pela classe .is-visible do reveal) */
.js .hero__title[data-reveal] .line__i {
    transform: translateY(112%);
    transition: transform 0.95s var(--ease);
}
.js .hero__title[data-reveal] .line:nth-child(2) .line__i { transition-delay: 0.09s; }
.js .hero__title[data-reveal].is-visible .line__i { transform: translateY(0); }
.hero__slogan { margin-top: 16px; font-size: 1.15rem; font-weight: 300; color: rgba(255, 255, 255, 0.78); }
.hero__lead { margin-top: 16px; max-width: 34em; color: var(--muted); font-size: 1.05rem; font-weight: 300; }
.hero__actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 28px; font-size: 0.85rem; color: var(--muted); }
.hero__trust li { position: relative; padding-left: 18px; }
.hero__trust li::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    transform: translateY(-50%);
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green);
}
.hero__trust li:nth-child(2)::before { background: var(--yellow); }
.hero__trust li:nth-child(3)::before { background: var(--blue); }
.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__visual img {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
    animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
.section { position: relative; z-index: 2; padding-block: 64px; }
.section--alt { background: var(--surface); border-block: 1px solid var(--line); }
.section__head { max-width: 620px; margin: 0 auto 64px; text-align: center; }
.section__eyebrow {
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 16px;
}
.section__title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section__lead { margin-top: 16px; color: var(--muted); font-weight: 300; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 860px;
    margin-inline: auto;
}
.product-grid--wide {
    max-width: none;
    grid-template-columns: repeat(auto-fit, minmax(216px, 264px));
    justify-content: center;
    gap: 20px;
}
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.product-card:hover {
    transform: translateY(var(--lift));
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow-card);
}
.product-card__media { position: relative; aspect-ratio: 1 / 1; background: #000; overflow: hidden; }
.product-card__media img {
    width: 100%; height: 100%;
    object-fit: contain;
    transition: transform 0.8s var(--ease);
}
.product-card:hover .product-card__media img { transform: scale(1.03); }
.product-card__ph {
    position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 26px;
    background: radial-gradient(125% 92% at 50% 0%, #1d1d1d 0%, #090909 66%);
    transition: transform 0.8s var(--ease);
}
.product-card:hover .product-card__ph { transform: scale(1.04); }
.product-card__ph-icon { width: 72px; height: 72px; color: rgba(255, 255, 255, 0.9); transition: transform 0.7s var(--ease); }
.product-card__ph-icon svg { width: 100%; height: 100%; display: block; }
.product-card:hover .product-card__ph-icon { transform: translateY(-3px); }
.product-card__ph-name { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.02em; color: var(--white); max-width: 88%; line-height: 1.2; }
.product-card__ph-mark {
    width: 92px; height: 4px; border-radius: 4px;
    background: linear-gradient(90deg, var(--green) 0 34%, var(--yellow) 34% 67%, var(--blue) 67% 100%);
}
.product-card__flag {
    position: absolute; top: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--yellow); color: var(--graphite);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.01em;
    padding: 5px 11px 5px 9px; border-radius: 999px;
    box-shadow: 0 6px 18px -4px rgba(254, 223, 0, 0.5);
}
.product-card__flag::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--graphite);
}
.product-card__body { display: flex; flex-direction: column; gap: 10px; padding: 20px; flex: 1; }
.product-card__name { font-size: 1.12rem; letter-spacing: -0.01em; }
.product-card__tagline { color: var(--muted); font-weight: 300; font-size: 0.9rem; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card__meta { display: flex; flex-wrap: wrap; gap: 6px 12px; font-size: 0.8rem; color: var(--muted-2); }
.product-card__badges { display: flex; flex-wrap: wrap; gap: 6px; }
.product-card__badges li {
    font-size: 0.68rem; color: var(--muted-2);
    padding: 4px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
}
.product-card__price { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 6px; }
.product-card__from { color: var(--muted-2); text-decoration: line-through; font-size: 0.85rem; }
.product-card__now { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; }
.product-card__cta { margin-top: 12px; width: 100%; }

.promo { position: relative; z-index: 2; padding-block: 64px; }
.promo__inner { display: grid; grid-template-columns: 0.85fr 1fr; align-items: center; gap: 56px; }
.promo__media img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }
.promo__eyebrow {
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 18px;
}
.promo__title { font-size: clamp(2rem, 4vw, 3rem); }
.promo__title span { color: var(--muted); display: block; }
.promo__discount { margin-top: 26px; font-size: 1.15rem; color: var(--muted); font-weight: 300; }
.promo__discount strong { font-size: 1.6rem; font-weight: 600; color: var(--white); margin-right: 8px; }
.promo__lead { margin-top: 14px; color: var(--muted); font-weight: 300; }
.promo .btn { margin-top: 34px; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature {
    padding: 32px 28px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}
.feature:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.18); }
.feature__mark {
    display: block;
    width: 40px; height: 3px;
    border-radius: 3px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, var(--green) 0 33%, var(--yellow) 33% 66%, var(--blue) 66% 100%);
}
.feature h3 { font-size: 1.12rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-weight: 300; font-size: 0.94rem; }

.cta-band { position: relative; z-index: 2; padding-block: 64px; text-align: center; }
.cta-band__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta-band__title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 16em; }
.cta-band__lead { color: var(--muted); font-weight: 300; }
.cta-band .btn { margin-top: 14px; }

.faq__list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    transition: border-color 0.35s var(--ease);
}
.faq__item[open] { border-color: rgba(255, 255, 255, 0.2); }
.faq__q {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 24px;
    font-size: 1.02rem; font-weight: 500;
    cursor: pointer;
    list-style: none;
    transition: color 0.25s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ''; }
.faq__icon { position: relative; flex: 0 0 16px; width: 16px; height: 16px; }
.faq__icon::before, .faq__icon::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--muted); border-radius: 2px;
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; transition: transform 0.3s var(--ease); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { padding: 0 24px 22px; color: var(--muted); font-weight: 300; font-size: 0.96rem; }

.site-footer { position: relative; z-index: 2; background: var(--surface); border-top: 1px solid var(--line); padding-top: 70px; }
.site-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.site-footer__slogan { margin-top: 18px; color: var(--muted); font-weight: 300; max-width: 22em; }
.site-footer__locality { margin-top: 12px; color: var(--muted-2); font-weight: 300; font-size: 0.85rem; }
.site-footer__nav, .site-footer__contact { display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; color: var(--muted); }
.site-footer__nav a:hover, .site-footer__contact a:hover { color: var(--white); }
.site-footer__legal {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
    padding-block: 26px;
    border-top: 1px solid var(--line);
    font-size: 0.8rem; color: var(--muted-2);
}

.social { display: flex; gap: 12px; margin-top: 24px; }
.social__link {
    display: inline-flex;
    transition: transform 0.35s var(--ease);
}
.social__link:hover { transform: translateY(-3px); }
.social__icon { width: 34px; height: 34px; display: block; border-radius: 9px; }

.payments {
    display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
    padding-block: 24px;
    border-top: 1px solid var(--line);
}
.payments__label {
    font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted-2);
}
.payments__list { display: flex; flex-wrap: wrap; gap: 10px; }
.payments__icon {
    width: 46px; height: 31px; display: block;
    border-radius: 5px;
    box-shadow: 0 0 0 1px var(--line);
}

.whatsapp-fab {
    position: fixed;
    right: 22px; bottom: 22px;
    z-index: 120;
    display: grid; place-items: center;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25D366; color: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(14px) scale(0.9);
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.whatsapp-fab.is-visible { opacity: 1; transform: none; pointer-events: auto; animation: fabPulse 2s ease-out infinite; }
.whatsapp-fab.is-visible:hover { transform: scale(1.07); }
.whatsapp-fab__glyph { width: 32px; height: 32px; display: block; }
@keyframes fabPulse {
    0% { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70% { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.breadcrumbs { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 4px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; font-size: 0.85rem; color: var(--muted-2); }
.breadcrumbs li { display: flex; gap: 8px; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: var(--muted-2); }
.breadcrumbs a:hover { color: var(--white); }

.pdp { position: relative; z-index: 2; padding-block: 40px 64px; }
.pdp__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.pdp__media img { width: 100%; max-width: 520px; border-radius: var(--radius); box-shadow: 0 40px 110px rgba(0, 0, 0, 0.6); }
.pdp__eyebrow { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.pdp__title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
.pdp__tagline { margin-top: 14px; color: var(--muted); font-weight: 300; font-size: 1.05rem; }
.pdp__meta { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 0.85rem; color: var(--muted-2); }
.pdp__price { margin-top: 22px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.pdp__from { color: var(--muted-2); text-decoration: line-through; font-size: 1rem; }
.pdp__now { font-size: 2rem; font-weight: 600; }
.pdp__save { font-size: 0.8rem; font-weight: 600; color: var(--graphite); background: var(--white); padding: 5px 11px; border-radius: 999px; }
.pdp__badges { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.pdp__badges li { font-size: 0.74rem; color: var(--muted); padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; }
.pdp__cta { margin-top: 28px; }
.pdp__trust { margin-top: 28px; display: grid; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.pdp__trust li { position: relative; padding-left: 22px; }
.pdp__trust li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.pdp__content { max-width: 760px; }
.pdp__content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 18px; }
.pdp__content h3 { font-size: 1.2rem; margin: 30px 0 14px; }
.pdp__content p { color: var(--muted); font-weight: 300; margin-bottom: 16px; }
.pdp__content strong { color: var(--white); font-weight: 500; }
.pdp__specs { display: grid; gap: 10px; }
.pdp__specs li { position: relative; padding-left: 22px; color: var(--muted); font-weight: 300; }
.pdp__specs li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
.product-card__link { transition: color 0.25s var(--ease); }
.product-card__link:hover { color: var(--muted); }

.catalog-head { position: relative; z-index: 2; padding-top: 44px; padding-bottom: 8px; }
.pagend { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 60px 0 44px; }
.pagend__top {
    display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%;
    border: 1px solid var(--line); background: var(--surface); color: var(--muted); cursor: pointer;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
}
.pagend__top:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.28); background: var(--surface-2); transform: translateY(-3px); }
.pagend__top svg { width: 20px; height: 20px; }
.pagend__top { position: relative; }
.pagend__top::after {
    content: ''; position: absolute; inset: -6px; border-radius: 50%; z-index: -1;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 70%);
    opacity: 0; filter: blur(8px); animation: pagendBreath 3.4s ease-in-out infinite;
}
.pagend__dot { position: relative; width: 26px; height: 5px; border-radius: 5px; opacity: 0.9; background: linear-gradient(90deg, var(--green) 0 34%, var(--yellow) 34% 67%, var(--blue) 67% 100%); animation: pagendBlink 2.8s ease-in-out infinite; }
.pagend__dot::after {
    content: ''; position: absolute; inset: -9px -12px; z-index: -1; border-radius: 999px;
    background: linear-gradient(90deg, var(--green), var(--yellow), var(--blue));
    filter: blur(11px); opacity: 0.35; animation: pagendSmoke 2.8s ease-in-out infinite;
}
@keyframes pagendBlink { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }
@keyframes pagendSmoke { 0%, 100% { opacity: 0.22; transform: scale(0.96); } 50% { opacity: 0.6; transform: scale(1.28); } }
@keyframes pagendBreath { 0%, 100% { opacity: 0; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .pagend__dot, .pagend__dot::after, .pagend__top::after { animation: none !important; } }

.cat-hero { position: relative; isolation: isolate; overflow: hidden; min-height: clamp(340px, 44vw, 540px); }
.cat-hero > .breadcrumbs, .cat-hero > .catalog-head { position: relative; z-index: 2; }
.cat-stage {
    position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; contain: paint;
    background: radial-gradient(140% 120% at 50% -10%, #0e1014 0%, var(--graphite) 60%);
}
.cat-stage__pic {
    position: absolute; inset: 0; display: block; overflow: hidden;
    transform: translate3d(var(--px, 0px), var(--py, 0px), 0);
    transition: transform 0.4s var(--ease); will-change: transform;
}
.cat-stage__img {
    position: absolute; inset: -9%; width: 118%; height: 118%; object-fit: cover; object-position: center 40%;
    opacity: 0.6; filter: saturate(108%) contrast(104%);
    animation: catKenBurns 32s ease-in-out infinite alternate;
}
@keyframes catKenBurns { 0% { transform: scale(1.04) translate3d(0, 0, 0); } 100% { transform: scale(1.13) translate3d(-2%, -1.6%, 0); } }
.cat-stage__glow {
    position: absolute; inset: 0; mix-blend-mode: screen; opacity: 0.9;
    background: radial-gradient(46% 52% at 50% 42%, var(--cat-accent, rgba(45, 125, 210, 0.28)), transparent 70%);
    animation: glowFloat 9s ease-in-out infinite;
}
.cat-stage__sweep {
    position: absolute; top: -20%; left: -45%; width: 48%; height: 140%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0.08) 56%, transparent 100%);
    filter: blur(6px); transform: skewX(-12deg); mix-blend-mode: screen;
    animation: catSweep 8s var(--ease) infinite; animation-delay: 1.4s;
}
@keyframes catSweep { 0% { transform: translateX(0) skewX(-12deg); opacity: 0; } 8% { opacity: 1; } 26% { opacity: 0; } 100% { transform: translateX(380%) skewX(-12deg); opacity: 0; } }
.cat-stage__vignette {
    position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.32) 42%, transparent 72%),
        radial-gradient(120% 95% at 50% 26%, transparent 38%, rgba(10, 10, 10, 0.55) 80%, var(--graphite) 100%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, transparent 24%, transparent 56%, var(--graphite) 100%);
}
.cat-stage--fallback {
    background:
        radial-gradient(46vw 46vw at 14% 6%, rgba(45, 125, 210, 0.4), transparent 64%),
        radial-gradient(40vw 40vw at 92% 28%, rgba(0, 155, 58, 0.3), transparent 66%),
        radial-gradient(38vw 38vw at 42% 120%, rgba(254, 223, 0, 0.14), transparent 60%),
        radial-gradient(140% 120% at 50% -10%, #0e1014 0%, var(--graphite) 60%);
}
.cat-hero[data-cat="iphone"] { --cat-accent: rgba(45, 125, 210, 0.3); }
.cat-hero[data-cat="ipad"] { --cat-accent: rgba(45, 125, 210, 0.24); }
.cat-hero[data-cat="mac"] { --cat-accent: rgba(120, 140, 170, 0.3); }
.cat-hero[data-cat="apple-watch"] { --cat-accent: rgba(0, 155, 58, 0.28); }
.cat-hero[data-cat="airpods"] { --cat-accent: rgba(255, 255, 255, 0.22); }
.cat-hero[data-cat="acessorios"] { --cat-accent: rgba(254, 223, 0, 0.16); }
@media (max-width: 880px) {
    .cat-stage__img { opacity: 0.48; animation: none; }
    .cat-stage__pic { transform: none !important; }
    .cat-stage__sweep { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .cat-stage__img, .cat-stage__glow, .cat-stage__sweep { animation: none !important; }
    .cat-stage__img { transform: scale(1.06); will-change: auto; }
}
.catalog-head__title { font-size: clamp(2rem, 4vw, 3rem); margin-top: 10px; max-width: 16em; }
.catalog-head__lead { margin-top: 18px; max-width: 44em; color: var(--muted); font-weight: 300; font-size: 1.05rem; }

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.category-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    color: inherit;
    transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.category-card:hover {
    transform: translateY(var(--lift));
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow-card);
}
.category-card__media { aspect-ratio: 3 / 2; background: #000; overflow: hidden; }
.category-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.category-card:hover .category-card__media img { transform: scale(1.04); }
.category-card__body { display: flex; flex-direction: column; gap: 10px; padding: 20px; }
.category-card__title { font-size: 1.12rem; letter-spacing: -0.01em; }
.category-card__desc { color: var(--muted); font-weight: 300; font-size: 0.9rem; line-height: 1.45; flex: 1; }
.category-card__link {
    margin-top: 8px; font-weight: 500; font-size: 0.86rem;
    display: inline-flex; align-items: center; gap: 6px;
}
.category-card__link::after { content: '→'; transition: transform 0.3s var(--ease); }
.category-card:hover .category-card__link::after { transform: translateX(4px); }

.catalog-tools { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.catalog-search {
    position: relative; display: flex; align-items: center; gap: 14px;
    width: 100%; height: 56px; padding: 0 20px;
    background: var(--surface-2); border: 1px solid var(--line); border-radius: 16px; cursor: text;
    transition: border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.catalog-search:hover { border-color: rgba(255, 255, 255, 0.18); }
.catalog-search:focus-within {
    background: var(--surface); border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}
.catalog-search__icon { display: inline-flex; flex: 0 0 20px; width: 20px; height: 20px; color: var(--muted-2); transition: color 0.3s var(--ease); }
.catalog-search__icon svg { width: 100%; height: 100%; display: block; }
.catalog-search:focus-within .catalog-search__icon { color: var(--white); }
.catalog-search input {
    flex: 1; min-width: 0; background: transparent; border: 0; outline: none;
    color: var(--white); font-family: var(--font); font-size: 1rem; font-weight: 300; letter-spacing: 0.01em;
}
.catalog-search input::placeholder { color: var(--muted-2); }
.catalog-search input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.catalog-chips {
    display: flex; gap: 10px; overflow-x: auto; padding-bottom: 2px;
    scrollbar-width: none; -ms-overflow-style: none;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.catalog-chips::-webkit-scrollbar { display: none; }
.catalog-chip {
    flex: 0 0 auto; scroll-snap-align: start;
    font-family: var(--font); font-size: 0.86rem; font-weight: 400; color: var(--muted); white-space: nowrap;
    padding: 10px 18px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
    transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.catalog-chip:hover { color: var(--white); background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.28); }
.catalog-chip:active { transform: scale(0.97); }
.catalog-chip.is-active {
    color: var(--graphite); background: var(--white); border-color: var(--white); font-weight: 500;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}
.catalog-chip.is-active:hover { color: var(--graphite); background: var(--white); }
.catalog-empty { margin-top: 28px; text-align: center; color: var(--muted); font-weight: 300; }
.catalog-empty a { color: var(--white); text-decoration: underline; }

.catmenu { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.catmenu__item {
    position: relative; display: flex; flex-direction: column; gap: 8px;
    padding: 28px; min-height: 168px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    color: var(--white); overflow: hidden;
    transition: transform 0.45s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.catmenu__item::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0;
    background: radial-gradient(440px circle at 110% -10%, rgba(45, 125, 210, 0.16), transparent 55%);
    transition: opacity 0.45s var(--ease);
}
.catmenu__item:hover { transform: translateY(var(--lift)); border-color: rgba(255, 255, 255, 0.22); background: var(--surface-2); }
.catmenu__item:hover::after { opacity: 1; }
.catmenu__name { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; }
.catmenu__desc { color: var(--muted); font-weight: 300; font-size: 0.92rem; line-height: 1.5; flex: 1; }
.catmenu__go { display: inline-flex; align-items: center; gap: 7px; font-size: 0.88rem; font-weight: 500; color: var(--muted); transition: color 0.3s var(--ease); }
.catmenu__go i { font-style: normal; transition: transform 0.3s var(--ease); }
.catmenu__item:hover .catmenu__go { color: var(--white); }
.catmenu__item:hover .catmenu__go i { transform: translateX(5px); }

.lineup__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.lineup__all { color: var(--muted); font-size: 0.9rem; white-space: nowrap; transition: color 0.25s var(--ease); }
.lineup__all:hover { color: var(--white); }
.lineup__tabs { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 4px; }
.lineup__tabs::-webkit-scrollbar { display: none; }
.lineup__tab {
    flex: 0 0 auto; font-family: var(--font); font-size: 0.92rem; font-weight: 400; color: var(--muted);
    white-space: nowrap; padding: 10px 20px; background: var(--surface-2);
    border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
    transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lineup__tab:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.28); }
.lineup__tab.is-active { color: var(--graphite); background: var(--white); border-color: var(--white); font-weight: 500; }
.shelf { position: relative; margin-top: 14px; }
.shelf__track {
    display: flex; gap: 24px; overflow-x: auto;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding: 8px 24px 16px max(24px, calc((100vw - var(--container)) / 2));
    scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch;
}
.shelf__track::-webkit-scrollbar { display: none; }
.shelf__item { flex: 0 0 280px; scroll-snap-align: start; }
.shelf__nav {
    position: absolute; top: 42%; transform: translateY(-50%);
    width: 50px; height: 50px; display: grid; place-items: center; z-index: 4;
    border-radius: 50%; border: 1px solid var(--line);
    background: rgba(20, 20, 20, 0.66); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    color: var(--white); cursor: pointer;
    transition: opacity 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s var(--ease);
}
.shelf__nav svg { width: 22px; height: 22px; }
.shelf__nav:hover { background: var(--white); color: var(--graphite); }
.shelf__nav:active { transform: translateY(-50%) scale(0.94); }
.shelf__nav--prev { left: max(16px, calc((100vw - var(--container)) / 2 - 4px)); }
.shelf__nav--next { right: max(16px, calc((100vw - var(--container)) / 2 - 4px)); }
.shelf__nav[hidden] { opacity: 0; pointer-events: none; }
.shelf.is-dragging .shelf__track { scroll-behavior: auto; scroll-snap-type: none; cursor: grabbing; }
.shelf.is-dragging .shelf__item { pointer-events: none; }

.shelf-card { display: flex; flex-direction: column; height: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease); }
.shelf-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.22); box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45); }
.shelf-card__media { position: relative; display: block; aspect-ratio: 4 / 3; padding: 22px; background: radial-gradient(125% 100% at 50% 0%, var(--surface-2) 0%, #0c0c0c 100%); }
.shelf-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.7s var(--ease); }
.shelf-card:hover .shelf-card__media img { transform: scale(1.04); }
.shelf-card__flag { position: absolute; top: 12px; left: 12px; padding: 5px 11px; font-size: 0.7rem; font-weight: 600; color: var(--graphite); background: var(--white); border-radius: 999px; }
.shelf-card__body { display: flex; flex-direction: column; gap: 5px; flex: 1; padding: 18px 18px 20px; }
.shelf-card__name { font-size: 1.06rem; font-weight: 600; line-height: 1.25; }
.shelf-card__name a { color: var(--white); transition: color 0.25s var(--ease); }
.shelf-card__name a:hover { color: var(--muted); }
.shelf-card__tagline { color: var(--muted); font-weight: 300; font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shelf-card__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 9px; margin-top: 10px; }
.shelf-card__pricelabel { flex-basis: 100%; font-size: 0.7rem; color: var(--muted-2); }
.shelf-card__from { color: var(--muted-2); text-decoration: line-through; font-size: 0.8rem; }
.shelf-card__now { font-size: 1.12rem; font-weight: 600; color: var(--white); }
.shelf-card__actions { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 18px; }
.shelf-card__buy { display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px; font-size: 0.84rem; font-weight: 500; color: var(--graphite); background: var(--white); border-radius: 999px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.shelf-card__buy svg { width: 15px; height: 15px; }
.shelf-card__buy:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4); }
.shelf-card__details { font-size: 0.84rem; color: var(--muted); transition: color 0.25s var(--ease); }
.shelf-card__details:hover { color: var(--white); }

@media (max-width: 880px) {
    .shelf__item { flex-basis: 80vw; max-width: 340px; }
    .shelf__nav { display: none; }
    .shelf__track { padding-inline: 18px; }
    .shelf-card__media { aspect-ratio: 1 / 1; }
}

@media (max-width: 880px) {
    .site-nav { display: none; }
    .pdp__inner { grid-template-columns: 1fr; gap: 36px; }
    .pdp__media { order: -1; max-width: 420px; margin-inline: auto; }
    .breadcrumbs { padding-top: 96px; }
    .site-header__cta { display: none; }
    .nav-toggle { display: inline-flex; }
    .hero { padding-top: 124px; }
    .hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .hero__visual { order: -1; }
    .hero__visual img { max-width: 360px; }
    .product-grid { grid-template-columns: minmax(0, 420px); justify-content: center; gap: 22px; }
    .promo__inner { grid-template-columns: 1fr; gap: 36px; }
    .promo__media { max-width: 420px; margin-inline: auto; }
    .features { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    .section { padding-block: 56px; }
    .promo { padding-block: 56px; }
    .cta-band { padding-block: 56px; }
    .site-footer__inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 520px) {
    .container { padding-inline: 18px; }
    .hero { padding-top: 112px; padding-bottom: 64px; }
    .hero__lead { font-size: 1rem; }
    .hero__actions { gap: 12px; }
    .hero__actions .btn { flex: 1 1 100%; }
    .hero__trust { gap: 18px 22px; margin-top: 32px; }
    .product-card__body { padding: 22px; }
    .features { grid-template-columns: 1fr; }
    .catalog-search { height: 52px; padding: 0 16px; }
    .catalog-search input { font-size: 0.95rem; }
    .catalog-chips { margin-inline: -18px; padding-inline: 18px; }
    .mobile-nav__links a { font-size: 1.35rem; }
    .site-footer__legal { flex-direction: column; }
    .whatsapp-fab { right: 16px; bottom: 16px; }
}

/* =========================================================================
   Apple-style motion layer
   Entradas via CSS (disparadas por .is-visible); scroll-linked via GSAP (fx.js).
   ========================================================================= */

/* Barra de progresso de leitura (hairline tricolor da marca) */
.scroll-progress {
    position: fixed;
    inset: 0 0 auto 0;
    height: 2px;
    z-index: 130;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.fx-on .scroll-progress { opacity: 1; }
/* GSAP controla o transform do hero no scroll; desliga o bob idle p/ não conflitar. */
.fx-on .hero__visual img { animation: none; }
.scroll-progress i {
    display: block;
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--green), var(--yellow) 50%, var(--blue));
}

/* Tilt 3D + brilho specular ("liquid glass") nos cards de produto */
.fx-on .product-card {
    transform-style: preserve-3d;
    transform: perspective(1000px)
               rotateX(calc(var(--ry, 0) * -5deg))
               rotateY(calc(var(--rx, 0) * 6deg))
               translateY(var(--lift, 0));
    transition: transform 0.5s var(--ease), border-color 0.4s var(--ease), box-shadow 0.5s var(--ease);
}
.fx-on .product-card.is-tilting { transition: transform 0.12s linear, border-color 0.4s var(--ease), box-shadow 0.5s var(--ease); }
.fx-on .product-card:hover { --lift: -6px; transform: perspective(1000px) rotateX(calc(var(--ry, 0) * -5deg)) rotateY(calc(var(--rx, 0) * 6deg)) translateY(-6px); }
.fx-on .product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%),
                rgba(255, 255, 255, 0.16), transparent 42%);
    transition: opacity 0.4s var(--ease);
}
.fx-on .product-card:hover::after { opacity: 1; }
.fx-on .product-card { position: relative; }

/* ---- Showcase pinado (story + canvas 360°) ---- */
.showcase { position: relative; z-index: 2; }
.showcase__sticky {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-block: 64px;
}
.showcase__inner {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 56px;
}
.showcase__stage { position: relative; display: flex; justify-content: center; }
.showcase__canvas,
.showcase__fallback {
    width: 100%;
    max-width: 480px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: var(--radius);
    filter: drop-shadow(0 40px 110px rgba(0, 0, 0, 0.65));
}
.showcase__canvas { display: none; }
.fx-on .showcase__canvas { display: block; }
.fx-on .showcase__fallback { display: none; }
.showcase__glow {
    position: absolute;
    inset: 8% 8% auto;
    height: 70%;
    z-index: -1;
    background: radial-gradient(circle, rgba(45, 125, 210, 0.20), transparent 65%);
    filter: blur(28px);
    pointer-events: none;
}
.showcase__title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 8px; }
.showcase__steps { position: relative; margin-top: 28px; display: grid; list-style: none; padding: 0; }
.showcase__step {
    grid-area: 1 / 1;
    max-width: 30em;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
    pointer-events: none;
}
.showcase__step.is-active { opacity: 1; transform: none; pointer-events: auto; }
/* Sem JS/reduced-motion (ou mobile): empilha as etapas como lista legível */
.showcase:not(.fx-ready) .showcase__steps { gap: 22px; }
.showcase:not(.fx-ready) .showcase__step {
    grid-area: auto;
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
}
.showcase__step-eyebrow {
    display: block;
    font-size: 0.76rem; font-weight: 500;
    letter-spacing: 0.26em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 12px;
}
.showcase__step p { color: rgba(255, 255, 255, 0.82); font-size: 1.18rem; font-weight: 300; line-height: 1.5; }

.showcase__progress { display: none; align-items: center; gap: 18px; margin-top: 40px; }
.showcase.fx-ready .showcase__progress { display: flex; }
.showcase__progress-num { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.12em; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.showcase__progress-num span { color: var(--white); }
.showcase__progress-bar { position: relative; flex: 1; height: 3px; border-radius: 3px; background: rgba(255, 255, 255, 0.12); overflow: hidden; }
.showcase__progress-bar i { position: absolute; inset: 0; transform: scaleX(0); transform-origin: left; border-radius: 3px; background: linear-gradient(90deg, var(--green), var(--yellow), var(--blue)); }
.showcase__progress-hint { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); white-space: nowrap; }

/* ---- Trilho horizontal pinado (Destaques) ---- */
.fx-on .product-grid.is-rail {
    display: flex;
    grid-template-columns: none;
    max-width: none;
    gap: 28px;
    width: max-content;
    will-change: transform;
}
.fx-on .product-grid.is-rail .product-card { width: 340px; flex: 0 0 340px; }
.fx-on .section.is-rail-host { overflow: hidden; }

@media (max-width: 880px) {
    .showcase__inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .showcase__stage { order: -1; }
    .showcase__steps { justify-items: center; }
    .showcase__sticky { min-height: auto; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .js [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
    .hero__title .line__i { transform: none !important; }
    .showcase__step { opacity: 1 !important; transform: none !important; position: static !important; }
    .scroll-progress { display: none !important; }
}

.leadform { position: relative; z-index: 2; padding-block: 72px; }
.leadform__inner {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
    position: relative;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 48px; box-shadow: var(--shadow-card);
}
.leadform__inner::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
    padding: 1px; background: linear-gradient(120deg, rgba(0,155,58,0.45), transparent 38%, transparent 62%, rgba(45,125,210,0.4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.6;
}
.leadform__copy { position: relative; }
.leadform__lead { margin-top: 16px; color: var(--muted); font-weight: 300; max-width: 32em; }
.leadform__perks { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; list-style: none; padding: 0; }
.leadform__perks li { position: relative; padding-left: 26px; color: var(--muted); font-size: 0.94rem; font-weight: 300; }
.leadform__perks li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(0,155,58,0.15); }
.leadform__perks li:nth-child(2)::before { background: var(--yellow); box-shadow: 0 0 0 4px rgba(254,223,0,0.14); }
.leadform__perks li:nth-child(3)::before { background: var(--blue); box-shadow: 0 0 0 4px rgba(45,125,210,0.16); }

.leadform__form { position: relative; display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 0.82rem; font-weight: 500; color: var(--muted); letter-spacing: 0.01em; }
.field__input {
    width: 100%; height: 54px; padding: 0 18px;
    background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; outline: none;
    color: var(--white); font-family: var(--font); font-size: 1rem; font-weight: 300; letter-spacing: 0.01em;
    transition: border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.field__input::placeholder { color: var(--muted-2); }
.field__input:hover { border-color: rgba(255, 255, 255, 0.18); }
.field__input:focus { background: var(--surface); border-color: rgba(255, 255, 255, 0.55); box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06); }
.field__error { font-size: 0.8rem; font-weight: 400; color: #ff6b6b; }
.field.is-invalid .field__input { border-color: rgba(255, 107, 107, 0.7); box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1); }

.field--consent { gap: 10px; }
.consent { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.consent__input { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; }
.consent__box {
    flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--surface-2); border: 1px solid var(--line); border-radius: 7px; color: var(--white);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
}
.consent__box svg { opacity: 0; transform: scale(0.5); transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); }
.consent__input:checked + .consent__box { background: var(--green); border-color: var(--green); }
.consent__input:checked + .consent__box svg { opacity: 1; transform: scale(1); }
.consent__input:focus-visible + .consent__box { outline: 2px solid var(--blue); outline-offset: 3px; }
.consent__input:active + .consent__box { transform: scale(0.92); }
.consent__text { font-size: 0.84rem; font-weight: 300; line-height: 1.5; color: var(--muted); }
.consent__text a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.consent__text a:hover { color: var(--green); }
.field--consent.is-invalid .consent__box { border-color: rgba(255, 107, 107, 0.7); }

.leadform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.leadform__submit { margin-top: 6px; width: 100%; gap: 10px; }
.leadform__submit[disabled] { opacity: 0.5; cursor: not-allowed; }
.leadform__submit[disabled]:hover { transform: none; }
.leadform__spinner { width: 16px; height: 16px; border-radius: 50%; display: none; border: 2px solid rgba(10, 10, 10, 0.25); border-top-color: var(--graphite); animation: leadspin 0.7s linear infinite; }
.leadform__form.is-loading .leadform__spinner { display: inline-block; }
.leadform__form.is-loading .leadform__submit { pointer-events: none; opacity: 0.75; }
@keyframes leadspin { to { transform: rotate(360deg); } }
.leadform__status { margin-top: 4px; font-size: 0.9rem; font-weight: 400; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--line); }
.leadform__status.is-success { color: #6ee7a0; background: rgba(0, 155, 58, 0.1); border-color: rgba(0, 155, 58, 0.35); }
.leadform__status.is-error { color: #ff8a8a; background: rgba(255, 107, 107, 0.08); border-color: rgba(255, 107, 107, 0.3); }
.leadform__fineprint { margin-top: 2px; font-size: 0.76rem; font-weight: 300; color: var(--muted-2); }
@media (max-width: 880px) {
    .leadform { padding-block: 48px; }
    .leadform__inner { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
    .field__input { height: 52px; }
}
@media (prefers-reduced-motion: reduce) {
    .leadform__spinner { animation-duration: 1.4s; }
    .consent__box, .consent__box svg, .field__input { transition: none; }
}
