@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;

    --container: 1180px;
    --radius: 18px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::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;
    padding: 14px 28px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 500;
    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);
}
.btn__label { position: relative; z-index: 1; }
.btn--primary { background: var(--white); color: var(--graphite); }
.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); }
.btn--primary:hover::before { transform: translateX(120%); }
.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); }

.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-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__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: center;
    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-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(-6px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.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__flag {
    position: absolute; top: 16px; left: 16px;
    background: var(--white); color: var(--graphite);
    font-size: 0.72rem; font-weight: 600;
    padding: 6px 12px; border-radius: 999px;
}
.product-card__body { display: flex; flex-direction: column; gap: 14px; padding: 26px; }
.product-card__name { font-size: 1.3rem; }
.product-card__tagline { color: var(--muted); font-weight: 300; font-size: 0.95rem; }
.product-card__meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 0.82rem; color: var(--muted-2); }
.product-card__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.product-card__badges li {
    font-size: 0.72rem; color: var(--muted);
    padding: 5px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
}
.product-card__price { display: flex; align-items: baseline; gap: 12px; margin-top: 4px; }
.product-card__from { color: var(--muted-2); text-decoration: line-through; font-size: 0.9rem; }
.product-card__now { font-size: 1.55rem; font-weight: 600; }
.product-card__cta { margin-top: 6px; 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; 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: 18px; padding-bottom: 8px; }
.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(-6px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.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: 12px; padding: 26px; }
.category-card__title { font-size: 1.35rem; }
.category-card__desc { color: var(--muted); font-weight: 300; font-size: 0.94rem; flex: 1; }
.category-card__link {
    margin-top: 4px; font-weight: 500; font-size: 0.92rem;
    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-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 36px; }
.catalog-search {
    display: flex; align-items: center; gap: 10px;
    flex: 1 1 280px; min-width: 240px;
    padding: 12px 18px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: border-color 0.3s var(--ease);
}
.catalog-search:focus-within { border-color: rgba(255, 255, 255, 0.32); }
.catalog-search__icon {
    width: 16px; height: 16px; flex: 0 0 16px; border-radius: 50%;
    border: 2px solid var(--muted); position: relative;
}
.catalog-search__icon::after {
    content: ''; position: absolute; right: -5px; bottom: -4px;
    width: 7px; height: 2px; background: var(--muted); border-radius: 2px;
    transform: rotate(45deg);
}
.catalog-search input {
    flex: 1; background: transparent; border: 0; outline: none;
    color: var(--white); font-family: var(--font); font-size: 0.96rem;
}
.catalog-search input::placeholder { color: var(--muted-2); }
.catalog-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-chip {
    font-family: var(--font); font-size: 0.85rem; color: var(--muted);
    padding: 9px 16px; background: transparent;
    border: 1px solid var(--line); border-radius: 999px; cursor: pointer;
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.catalog-chip:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.catalog-chip.is-active { color: var(--graphite); background: var(--white); border-color: 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; }

@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; }
    .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; }

/* ---- 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; }
}
