:root {
    --navy: #123a52;
    --navy-2: #0d2c3f;
    --navy-3: #1c4e66;
    --teal: #6fc8c3;
    --teal-dark: #24a396;
    --teal-pale: #eaf8f6;
    --mint: #d7f0ed;
    --ink: #172b36;
    --muted: #667985;
    --line: #dce7e9;
    --surface: #f5f9f9;
    --white: #fff;
    --success: #1d9a71;
    --shadow-sm: 0 8px 30px rgba(18, 58, 82, .08);
    --shadow-lg: 0 28px 70px rgba(18, 58, 82, .15);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --container: 1200px;

    /* Escala de tipografia da loja.
       O corpo sempre foi 16px, mas rótulo, preço de comparação, prazo de
       entrega e legenda de card viviam entre 7px e 11px — pequeno demais para
       ler sem aproximar a tela. O piso agora é 12px, e o resto sobe junto para
       manter a hierarquia. Mudar o tamanho do texto miúdo do site inteiro é
       mexer nestes quatro valores; títulos e preços grandes têm tamanho
       próprio, definidos onde aparecem. */
    --fs-2xs: 12px;   /* rótulos em caixa alta, legendas (antes 7–9px) */
    --fs-xs: 13px;    /* apoio, metadados, botões pequenos (antes 10–11px) */
    --fs-sm: 14px;    /* texto de interface, listas (antes 12–13px) */
    --fs-md: 16px;    /* parágrafos de destaque (antes 14–15px) */
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--white);
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
/* O padrão do navegador para <small> é "menor que o pai", o que reabria o
   problema por baixo: um <small> sem estilo dentro de um rótulo de 13px caía
   para 10,8px. Aqui ele passa a ter piso próprio; quem precisa de outro
   tamanho define pela classe, que tem precedência sobre este seletor. */
small { font-size: var(--fs-2xs); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.12; letter-spacing: -.035em; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 10px 16px; background: var(--navy); color: #fff; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .92); border-bottom: 1px solid rgba(18, 58, 82, .07); backdrop-filter: blur(18px); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 10px 34px rgba(18, 58, 82, .09); }
.site-header__inner { min-height: 82px; display: grid; grid-template-columns: 300px 1fr auto; align-items: center; gap: 28px; }
/* A arte do logo traz "Seu parceiro em saúde veterinária" embutida, em três
   linhas, ocupando o terço direito de uma imagem de 1655px. No cabeçalho isso
   era reduzido sete vezes e virava borrão ilegível.
   Recortamos os 32% da direita e usamos o espaço ganho para exibir a marca
   maior — 64px de altura em vez de 54. A assinatura permanece no alt da
   imagem, para leitor de tela e busca.
   O mesmo recorte está no shader de logo-hover.js (uCrop): mexer aqui exige
   mexer lá, senão a versão animada mostra a assinatura espremida. */
/* A assinatura "Seu parceiro em saúde veterinária" vem embutida na arte, em
   três linhas, no terço direito de uma imagem de 1655px. Reduzida ao tamanho do
   cabeçalho virava borrão de ~8px por linha.
   Ela é recortada da imagem e reescrita como texto — mesma disposição da arte,
   mesmo traço divisor, mas nítida em qualquer tela e traduzível.
   A proporção É o recorte: 1125 de 1655px é exatamente onde a assinatura
   começa. Por aspect-ratio em vez de largura fixa, o corte cai no mesmo ponto
   nos sete breakpoints que redimensionam a marca. */
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 100%; height: auto; }
.brand__visual { position: relative; display: block; flex: none; width: 190px; overflow: hidden; aspect-ratio: 1125 / 379; }
.brand__tagline {
    flex: none; padding-left: 10px; border-left: 1.5px solid var(--teal);
    color: var(--navy); font-size: var(--fs-xs); font-weight: 500; line-height: 1.24;
    letter-spacing: -.01em; white-space: nowrap;
}
.brand__visual img,
.brand__canvas { position: absolute; inset: 0; display: block; width: 100% !important; height: 100% !important; object-fit: cover; object-position: left center; }
.brand__dog,
.brand__cat { transition: opacity .28s ease; }
.brand__cat { opacity: 0; }
.brand:hover .brand__dog,
.brand:focus-visible .brand__dog { opacity: 0; }
.brand:hover .brand__cat,
.brand:focus-visible .brand__cat { opacity: 1; }
.brand__canvas { z-index: 2; opacity: 0; pointer-events: none; }
.brand.is-webgl-ready .brand__dog,
.brand.is-webgl-ready .brand__cat { opacity: 0; }
.brand.is-webgl-ready .brand__canvas { opacity: 1; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.primary-nav a { position: relative; color: #395360; font-size: var(--fs-md); font-weight: 700; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--teal-dark); transition: right .25s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }
.header-cta, .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.header-cta { min-height: 44px; padding: 0 20px; color: #fff; background: var(--navy); font-size: var(--fs-sm); }
.header-cta svg, .button svg, .text-link svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.header-cta:hover, .button:hover { transform: translateY(-2px); }
.nav-toggle { display: none; padding: 7px; border: 0; background: transparent; }
.nav-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--navy); transition: .2s ease; }

.hero { position: relative; min-height: 700px; overflow: hidden; background: linear-gradient(130deg, #f7fbfb 0%, #ecf8f7 60%, #e5f5f3 100%); }
.hero__texture { position: absolute; inset: 0; opacity: .32; background-image: radial-gradient(rgba(18, 58, 82, .17) .7px, transparent .7px); background-size: 18px 18px; mask-image: linear-gradient(to right, #000, transparent 70%); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 62px; min-height: 700px; padding-top: 50px; padding-bottom: 55px; }
.hero__content { padding-bottom: 16px; }
.eyebrow, .kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: var(--teal-dark); font-size: var(--fs-sm); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow { padding: 8px 13px; border: 1px solid rgba(36, 163, 150, .2); border-radius: 999px; background: rgba(255,255,255,.65); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-dark); box-shadow: 0 0 0 5px rgba(36, 163, 150, .12); }
.hero h1 { max-width: 680px; margin-bottom: 24px; font-size: clamp(43px, 5vw, 70px); font-weight: 800; }
.hero h1 em { position: relative; color: var(--teal-dark); font-style: normal; white-space: nowrap; }
.hero h1 em::after { content: ""; position: absolute; left: 0; right: 0; bottom: 1px; height: 7px; border-radius: 50%; border-top: 3px solid var(--teal); transform: rotate(-1.5deg); }
.hero__content > p { max-width: 610px; margin-bottom: 32px; color: #506975; font-size: 18px; }
.hero__actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.button { min-height: 52px; padding: 0 25px; border: 0; font-size: var(--fs-md); }
.button--primary { color: #fff; background: var(--navy); box-shadow: 0 12px 28px rgba(18, 58, 82, .22); }
.button--primary:hover { background: var(--navy-3); box-shadow: 0 15px 32px rgba(18, 58, 82, .27); }
.button--ghost { padding-inline: 14px; color: var(--navy); }
.play-icon { display: grid; width: 41px; height: 41px; place-items: center; border: 1px solid rgba(18, 58, 82, .14); border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); }
.play-icon svg { width: 18px; height: 18px; fill: var(--teal-dark); stroke: none; }
.hero__proof { display: flex; align-items: center; gap: 13px; margin-top: 38px; }
.hero__proof p { margin: 0; color: var(--muted); font-size: var(--fs-sm); line-height: 1.45; }
.hero__proof strong { color: var(--navy); }
.avatar-stack { display: flex; padding-left: 8px; }
.avatar-stack span { display: grid; width: 34px; height: 34px; place-items: center; margin-left: -8px; border: 2px solid #fff; border-radius: 50%; color: #fff; background: var(--navy); font-size: var(--fs-2xs); font-weight: 800; }
.avatar-stack span:nth-child(2) { background: var(--teal-dark); }
.avatar-stack span:nth-child(3) { color: var(--navy); background: var(--mint); }

.hero__visual { position: relative; min-width: 0; }
.viewer-shell { position: relative; overflow: hidden; border: 1px solid rgba(18, 58, 82, .09); border-radius: var(--radius-lg); background: radial-gradient(circle at 50% 42%, #fff 0, #f3faf9 42%, #dfefed 100%); box-shadow: var(--shadow-lg); }
.viewer-shell--hero { height: 510px; transform: perspective(1200px) rotateY(-3deg); }
.viewer-shell--product { height: 585px; box-shadow: none; background: radial-gradient(circle at 50% 42%, #fff 0, #f5faf9 48%, #e8f2f1 100%); }
.viewer-topline { position: absolute; z-index: 3; top: 20px; left: 22px; right: 22px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: var(--fs-xs); font-weight: 800; letter-spacing: .11em; text-transform: uppercase; pointer-events: none; }
.viewer-status { display: flex; align-items: center; gap: 7px; color: var(--navy); }
.viewer-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(29,154,113,.12); }
.product-viewer { position: absolute; inset: 0; cursor: grab; }
.product-viewer:active { cursor: grabbing; }
.product-viewer canvas { width: 100% !important; height: 100% !important; }
.viewer-hint, .gallery-tip { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: var(--fs-xs); font-weight: 700; }
.viewer-hint { position: absolute; z-index: 3; left: 50%; bottom: 21px; transform: translateX(-50%); padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.8); backdrop-filter: blur(8px); white-space: nowrap; }
.viewer-hint svg, .gallery-tip svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb--one { width: 150px; height: 150px; right: -65px; top: -45px; background: rgba(111,200,195,.3); }
.orb--two { width: 80px; height: 80px; left: -28px; bottom: 35px; background: rgba(18,58,82,.09); }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; min-width: 174px; padding: 12px 14px; border: 1px solid rgba(18,58,82,.07); border-radius: 15px; background: rgba(255,255,255,.93); box-shadow: 0 14px 35px rgba(18,58,82,.13); backdrop-filter: blur(10px); }
.floating-card--top { right: -30px; top: 95px; }
.floating-card--bottom { left: -38px; bottom: 90px; }
.floating-card__icon { display: grid; flex: 0 0 37px; height: 37px; place-items: center; border-radius: 10px; color: #fff; background: var(--navy); }
.floating-card__icon--teal { background: var(--teal-dark); }
.floating-card__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { color: var(--navy); font-size: var(--fs-xs); }
.floating-card small { color: var(--muted); font-size: var(--fs-2xs); }

.trust-strip { position: relative; z-index: 3; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 -8px 24px rgba(18,58,82,.03); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 92px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border: 0; }
.trust-grid svg { width: 28px; height: 28px; fill: none; stroke: var(--teal-dark); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.trust-grid strong, .trust-grid small { display: block; }
.trust-grid strong { color: var(--navy); font-size: var(--fs-sm); }
.trust-grid small { color: var(--muted); font-size: var(--fs-xs); }

.section-heading--split { display: grid; grid-template-columns: 1.15fr .65fr; align-items: end; gap: 80px; margin-bottom: 55px; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 52px); }
.section-heading h2 span, .story-copy h2 span { color: var(--teal-dark); }
.section-heading--split > p { margin: 0 0 5px; color: var(--muted); font-size: var(--fs-md); }
.section-heading--center { max-width: 770px; margin: 0 auto 60px; text-align: center; }
.product-showcase { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); }
.product-showcase__media { position: relative; min-height: 530px; overflow: hidden; background: linear-gradient(145deg, #e8f6f4, #c9e8e4); }
.product-showcase__media::before { content: ""; position: absolute; width: 420px; height: 420px; left: 50%; top: 50%; border: 1px solid rgba(18,58,82,.09); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 55px rgba(255,255,255,.13), 0 0 0 110px rgba(255,255,255,.1); }
.badge { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 800; }
.badge--sale { position: absolute; z-index: 2; left: 24px; top: 24px; min-width: 62px; min-height: 31px; color: #fff; background: var(--teal-dark); font-size: var(--fs-xs); }
.media-cta { position: absolute; right: 24px; bottom: 24px; display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: #fff; background: var(--navy); transition: transform .2s; }
.media-cta svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.product-showcase__media:hover .media-cta { transform: translateX(4px); }
.product-silhouette { position: absolute; left: 50%; top: 52%; width: 380px; height: 330px; transform: translate(-50%,-50%); }
.silhouette-wall { position: absolute; left: 28px; top: 90px; width: 54px; height: 160px; border-radius: 13px; background: var(--navy); box-shadow: inset -8px 0 0 rgba(0,0,0,.07); }
.silhouette-arm { position: absolute; height: 25px; border-radius: 999px; background: var(--navy); transform-origin: left center; box-shadow: inset 0 -6px 0 rgba(0,0,0,.07); }
.silhouette-arm--one { left: 68px; top: 117px; width: 151px; transform: rotate(-22deg); }
.silhouette-arm--two { left: 200px; top: 65px; width: 125px; transform: rotate(23deg); }
.silhouette-joint { position: absolute; width: 43px; height: 43px; border: 8px solid #fff; border-radius: 50%; background: var(--teal-dark); box-shadow: 0 5px 18px rgba(18,58,82,.2); }
.silhouette-joint--one { left: 54px; top: 105px; }
.silhouette-joint--two { left: 190px; top: 50px; }
.silhouette-hook { position: absolute; left: 315px; top: 80px; width: 12px; height: 130px; border-radius: 6px; background: var(--navy); }
.silhouette-hook::before { content: ""; position: absolute; left: -27px; top: 0; width: 61px; height: 27px; border: 10px solid var(--navy); border-bottom: 0; border-radius: 25px 25px 0 0; }
.silhouette-bag { position: absolute; left: 281px; top: 132px; width: 79px; height: 107px; border: 6px solid rgba(255,255,255,.9); border-radius: 14px 14px 28px 28px; background: rgba(111,200,195,.4); transform: rotate(3deg); box-shadow: 0 16px 28px rgba(18,58,82,.12); }
.silhouette-bag::after { content: ""; position: absolute; left: 50%; bottom: -35px; width: 4px; height: 34px; background: rgba(18,58,82,.45); }
.product-showcase__content { padding: 58px 60px; }
.product-meta, .product-info__topline { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--teal-dark); font-size: var(--fs-xs); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.stock { display: inline-flex; align-items: center; gap: 7px; color: var(--success); }
.stock i, .stock-line i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px rgba(29,154,113,.11); }
.product-showcase h3 { margin: 19px 0 18px; font-size: 34px; }
.product-showcase__content > p { color: var(--muted); font-size: var(--fs-md); }
.feature-list, .purchase-benefits { padding: 0; margin: 26px 0; list-style: none; }
.feature-list li, .purchase-benefits li { display: flex; align-items: center; gap: 11px; margin: 12px 0; color: #405762; font-size: var(--fs-sm); font-weight: 600; }
.feature-list svg { width: 19px; height: 19px; padding: 4px; border-radius: 50%; color: var(--teal-dark); background: var(--teal-pale); fill: none; stroke: currentColor; stroke-width: 2.5; }
.product-showcase__buy { display: flex; align-items: end; justify-content: space-between; gap: 25px; padding-top: 25px; border-top: 1px solid var(--line); }
.price-block del, .price-block strong, .price-block small { display: block; }
.price-block del { color: #94a2a8; font-size: var(--fs-sm); }
.price-block strong { color: var(--navy); font-size: 31px; line-height: 1.25; }
.price-block small { color: var(--muted); font-size: var(--fs-xs); }

.concept-heading { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 60px; margin: 78px 0 30px; }
.concept-heading .kicker { margin-bottom: 8px; }
.concept-heading h3 { margin: 0; font-size: 30px; }
.concept-heading p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.concept-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.concept-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.concept-card__visual { position: relative; height: 265px; overflow: hidden; background: linear-gradient(145deg, #eaf7f5, #cce8e5); }
.concept-card__visual::before { content: ""; position: absolute; left: 50%; top: 53%; width: 240px; height: 240px; border: 1px solid rgba(18,58,82,.09); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 42px rgba(255,255,255,.13); }
.concept-card__visual--otoscope { background: linear-gradient(145deg, #eef4f6, #d4e3e8); }
.concept-status { position: absolute; z-index: 3; left: 18px; top: 18px; display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border-radius: 999px; color: var(--navy); background: rgba(255,255,255,.88); font-size: var(--fs-2xs); font-weight: 800; letter-spacing: .05em; text-transform: uppercase; backdrop-filter: blur(8px); }
.concept-status i { width: 7px; height: 7px; border-radius: 50%; background: #e4a536; box-shadow: 0 0 0 4px rgba(228,165,54,.14); }
.concept-number { position: absolute; right: 18px; bottom: 10px; color: rgba(18,58,82,.14); font-size: 52px; font-weight: 800; letter-spacing: -.08em; }
.organizer-model { position: absolute; z-index: 2; left: 50%; top: 52%; display: flex; align-items: flex-end; gap: 10px; width: 295px; height: 128px; padding: 21px 20px 18px; border-radius: 18px; background: var(--navy); transform: translate(-50%,-50%) rotate(-2deg); box-shadow: 0 22px 35px rgba(18,58,82,.2), inset 0 -8px 0 rgba(0,0,0,.08); }
.organizer-model::before { content: ""; position: absolute; left: 22px; right: 22px; top: -17px; height: 29px; border-radius: 10px 10px 3px 3px; background: var(--teal); box-shadow: inset 0 -5px 0 rgba(18,58,82,.08); }
.organizer-model span { position: relative; flex: 1; height: 77%; border: 3px solid rgba(255,255,255,.85); border-radius: 8px 8px 14px 14px; background: rgba(111,200,195,.3); }
.organizer-model span:nth-child(2) { height: 93%; }
.organizer-model span:nth-child(3) { height: 70%; }
.organizer-model span:nth-child(4) { height: 84%; }
.organizer-model span::before { content: ""; position: absolute; left: 50%; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: #fff; transform: translateX(-50%); }
.otoscope-model { position: absolute; z-index: 2; left: 50%; top: 51%; width: 290px; height: 170px; transform: translate(-50%,-50%) rotate(1deg); }
.otoscope-base { position: absolute; inset: 20px 0 0; border-radius: 22px; background: var(--navy); box-shadow: 0 23px 38px rgba(18,58,82,.2), inset 0 -9px 0 rgba(0,0,0,.08); }
.otoscope-device { position: absolute; left: 43px; top: 35px; width: 47px; height: 105px; border: 8px solid var(--teal); border-radius: 18px 18px 11px 11px; background: #f5faf9; transform: rotate(8deg); }
.otoscope-device::before { content: ""; position: absolute; left: 4px; top: -34px; width: 25px; height: 40px; border-radius: 12px 12px 4px 4px; background: var(--navy-2); }
.otoscope-device::after { content: ""; position: absolute; left: 18px; top: -29px; width: 46px; height: 15px; border-radius: 0 12px 12px 0; background: var(--navy-2); transform: rotate(-12deg); transform-origin: left; }
.otoscope-cones { position: absolute; right: 35px; top: 48px; display: flex; gap: 12px; align-items: end; }
.otoscope-cones i { display: block; width: 25px; height: 61px; clip-path: polygon(28% 0,72% 0,100% 100%,0 100%); background: var(--teal); }
.otoscope-cones i:nth-child(2) { height: 78px; background: #8ad6d1; }
.otoscope-cones i:nth-child(3) { height: 48px; background: #55b8b1; }
.concept-card__content { display: flex; flex: 1; flex-direction: column; padding: 28px 30px 30px; }
.concept-card__content .product-meta { color: var(--muted); }
.concept-card__content .product-meta span:first-child { color: var(--teal-dark); }
.concept-card__content h3 { margin: 13px 0 10px; font-size: 23px; }
.concept-card__content > p { min-height: 58px; margin-bottom: 18px; color: var(--muted); font-size: var(--fs-xs); }
.concept-card__content ul { display: grid; gap: 7px; padding: 0; margin: 0 0 24px; list-style: none; }
.concept-card__content li { display: flex; align-items: center; gap: 8px; color: #506873; font-size: var(--fs-xs); font-weight: 600; }
.concept-card__content li svg { width: 16px; height: 16px; padding: 3px; border-radius: 50%; color: var(--teal-dark); background: var(--teal-pale); fill: none; stroke: currentColor; stroke-width: 2.5; }
.concept-card__footer { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.concept-card__footer > div { display: grid; grid-template-columns: auto auto; align-items: center; gap: 0 8px; }
.concept-card__footer small { grid-column: 1 / -1; color: var(--muted); font-size: var(--fs-2xs); }
.concept-card__footer del { color: #98a5aa; font-size: var(--fs-2xs); }
.concept-card__footer strong { color: var(--navy); font-size: 23px; }
.concept-card__footer span { padding: 3px 6px; border-radius: 999px; color: var(--success); background: #e8f7f1; font-size: var(--fs-2xs); font-weight: 800; }
.concept-card__footer > a { display: inline-flex; align-items: center; gap: 7px; min-height: 42px; padding: 0 15px; border: 1px solid var(--navy); border-radius: 999px; color: var(--navy); font-size: var(--fs-xs); font-weight: 800; transition: color .2s, background .2s; }
.concept-card__footer > a:hover { color: #fff; background: var(--navy); }
.concept-card__footer > a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

.pain-section { overflow: hidden; color: #fff; background: var(--navy); }
.pain-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.kicker--light { color: var(--teal); }
.pain-copy h2 { margin-bottom: 22px; color: #fff; font-size: clamp(36px, 4vw, 54px); }
.pain-copy p { color: #bdd0d9; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; color: var(--teal); font-size: var(--fs-sm); font-weight: 800; }
.text-link svg { width: 18px; }
.pain-cards { display: grid; grid-template-columns: repeat(3, 1fr); }
.pain-cards article { min-height: 290px; padding: 35px 28px; border-left: 1px solid rgba(255,255,255,.12); transition: background .2s; }
.pain-cards article:hover { background: rgba(255,255,255,.04); }
.pain-cards article > span { color: var(--teal); font-size: var(--fs-xs); font-weight: 800; letter-spacing: .12em; }
.pain-cards h3 { margin-top: 100px; color: #fff; font-size: 20px; }
.pain-cards p { color: #a9c0ca; font-size: var(--fs-sm); }

.process { background: var(--surface); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--line); overflow: hidden; }
.process-grid article { position: relative; min-height: 310px; padding: 35px 28px; background: #fff; }
.process-number { position: absolute; right: 24px; top: 24px; color: #b8c9ce; font-size: var(--fs-xs); font-weight: 800; }
.process-icon { display: grid; width: 55px; height: 55px; margin-bottom: 65px; place-items: center; border-radius: 16px; color: var(--teal-dark); background: var(--teal-pale); }
.process-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.process-grid h3 { font-size: 18px; }
.process-grid p { color: var(--muted); font-size: var(--fs-sm); }

.newsletter { padding: 80px 0; color: #fff; background: linear-gradient(120deg, var(--teal-dark), #238d87); }
.newsletter__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.newsletter__copy h2 { max-width: 500px; color: #fff; font-size: clamp(32px, 3.5vw, 46px); }
.newsletter__copy p { color: rgba(255,255,255,.82); font-size: var(--fs-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.lead-form label > span { display: block; margin: 0 0 5px 4px; color: rgba(255,255,255,.82); font-size: var(--fs-xs); font-weight: 700; }
.lead-form label small { opacity: .75; }
.lead-form input:not([type="checkbox"]) { width: 100%; min-height: 48px; padding: 0 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 11px; outline: 0; color: #fff; background: rgba(255,255,255,.1); font-size: var(--fs-sm); }
.lead-form input::placeholder { color: rgba(255,255,255,.55); }
.lead-form input:focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.12); }
.check-field { display: flex; align-items: flex-start; gap: 9px; margin: 13px 0; }
.check-field input { margin-top: 3px; accent-color: var(--navy); }
.check-field span { margin: 0 !important; font-weight: 500 !important; }
.button--white { color: var(--navy); background: #fff; }
.lead-form .button { width: 100%; }
.form-message { min-height: 22px; margin: 8px 0 0; color: #fff; font-size: var(--fs-xs); font-weight: 700; text-align: center; }
.honeypot { position: absolute !important; left: -9999px !important; }

.site-footer { padding-top: 68px; color: #a8bbc4; background: var(--navy-2); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .95fr .95fr; gap: 50px; padding-bottom: 52px; }
/* Mesmo tratamento do cabeçalho: a assinatura embutida na arte é recortada e
   reescrita como texto. Aqui ela sai em branco, sobre o fundo navy.
   Os seletores levam .site-footer na frente porque a regra genérica
   `.site-footer span` impõe display block, margem e tamanho a todo span do
   rodapé — sem isso ela venceria por especificidade. */
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 190px; height: auto; aspect-ratio: 1125 / 379; object-fit: cover; object-position: left center; filter: brightness(0) invert(1); opacity: .95; }
.site-footer .footer-logo__tagline {
    display: block; margin: 0; padding-left: 10px; border-left: 1.5px solid var(--teal);
    color: #fff; font-size: var(--fs-xs); font-weight: 500; line-height: 1.24;
    letter-spacing: -.01em; white-space: nowrap; opacity: .95;
}
.footer-brand p { max-width: 310px; margin-top: 18px; font-size: var(--fs-sm); }
.site-footer h2 { margin-bottom: 17px; color: #fff; font-size: var(--fs-sm); letter-spacing: .08em; text-transform: uppercase; }
.site-footer a, .site-footer span, .site-footer p { display: block; margin-bottom: 10px; font-size: var(--fs-xs); }
.site-footer a:hover { color: var(--teal); }
.payment-tags { display: flex; gap: 7px; }
.payment-tags span { padding: 5px 8px; border: 1px solid rgba(255,255,255,.16); border-radius: 5px; color: #fff; font-size: var(--fs-2xs); font-weight: 800; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 72px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom span, .footer-bottom a { margin: 0; }
.technology-credit { color: var(--teal); font-weight: 700; }
.technology-credit:hover { color: #fff !important; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: grid; width: 55px; height: 55px; place-items: center; border: 3px solid #fff; border-radius: 50%; color: #fff; background: #1fad6f; box-shadow: 0 10px 30px rgba(20,128,83,.28); transition: transform .2s; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }

/* Product page */
.breadcrumb { display: flex; align-items: center; gap: 7px; min-height: 64px; color: #84949c; font-size: var(--fs-xs); }
.breadcrumb a:hover { color: var(--teal-dark); }
.breadcrumb svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.breadcrumb span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-main { padding: 20px 0 92px; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(400px, .95fr); gap: 72px; align-items: start; }
.product-gallery { min-width: 0; }
.product-gallery__stage { position: relative; }
.product-sale { left: 20px; top: 60px; }
.viewer-reset { display: inline-flex; align-items: center; gap: 6px; padding: 0; border: 0; color: var(--muted); background: transparent; font-size: var(--fs-xs); font-weight: 800; letter-spacing: 0; text-transform: none; pointer-events: auto; }
.viewer-reset svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.viewer-controls { position: absolute; z-index: 4; left: 20px; right: 20px; bottom: 18px; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.viewer-controls > span { color: var(--muted); font-size: var(--fs-xs); font-weight: 700; }
.viewer-controls > div { display: flex; gap: 8px; pointer-events: auto; }
.color-swatch { width: 24px; height: 24px; padding: 0; border: 3px solid #fff; border-radius: 50%; outline: 1px solid rgba(18,58,82,.15); background: var(--swatch); box-shadow: 0 3px 8px rgba(18,58,82,.12); }
.color-swatch.is-active { outline: 2px solid var(--teal-dark); outline-offset: 2px; }
.gallery-tip { justify-content: center; margin-top: 13px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 15px; }
.gallery-thumb { position: relative; height: 86px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.gallery-thumb.is-active { border-color: var(--teal-dark); box-shadow: inset 0 0 0 1px var(--teal-dark); }
.gallery-thumb small { position: absolute; left: 8px; bottom: 5px; color: var(--muted); font-size: var(--fs-2xs); font-weight: 700; }
.mini-model { position: absolute; left: 50%; top: 13px; width: 45px; height: 7px; border-radius: 8px; background: var(--navy); transform: translateX(-50%) rotate(-20deg); }
.mini-model::before { content: ""; position: absolute; left: -13px; top: -6px; width: 17px; height: 40px; border-radius: 4px; background: var(--navy); }
.mini-model::after { content: ""; position: absolute; right: -12px; top: -14px; width: 7px; height: 45px; border-radius: 5px; background: var(--navy); }
.mini-model--side { transform: translateX(-50%) rotate(0); width: 55px; }
.mini-model--detail { top: 30px; width: 34px; height: 10px; }
.mini-model--detail::before { width: 18px; height: 18px; border-radius: 50%; left: -8px; top: -4px; background: var(--teal-dark); }
.mini-model--detail::after { height: 10px; width: 18px; right: -15px; top: 0; }
.product-info { padding-top: 10px; }
.product-sku { color: #8b9aa1; letter-spacing: .04em; }
.product-info h1 { margin: 15px 0 17px; font-size: clamp(36px, 4vw, 50px); }
.product-lead { color: var(--muted); font-size: var(--fs-md); }
.product-rating { display: flex; align-items: center; gap: 9px; margin: 19px 0; color: #6a7e88; font-size: var(--fs-xs); font-weight: 700; }
.stars { color: #eab54e; letter-spacing: 2px; }
.product-price { display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 0 13px; padding: 21px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-price div > span, .product-price strong { display: block; }
.product-price div > span { color: #8d9da4; font-size: var(--fs-xs); }
.product-price strong { color: var(--navy); font-size: 39px; line-height: 1.15; }
.discount-pill { align-self: center; justify-self: start; padding: 5px 9px; border-radius: 999px; color: var(--success); background: #e8f7f1; font-size: var(--fs-2xs); font-weight: 800; }
.product-price > small { grid-column: 1 / -1; color: var(--muted); font-size: var(--fs-xs); }
.stock-line { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; color: var(--success); font-size: var(--fs-xs); font-weight: 800; }
.stock-line span { display: flex; align-items: center; gap: 8px; }
.stock-line small { color: var(--muted); font-weight: 600; }
.stock-line--soldout { color: var(--muted); }
.stock-line--soldout i { box-shadow: 0 0 0 4px rgba(102,121,133,.11); }
.button--buy.is-disabled { background: var(--line); color: var(--muted); cursor: not-allowed; box-shadow: none; }
.product-store-actions button:disabled { color: var(--muted); background: var(--surface); cursor: not-allowed; }
.purchase-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; margin: 10px 0 23px; }
.purchase-benefits li { margin: 0; font-size: var(--fs-xs); }
.purchase-benefits li > span { display: grid; flex: 0 0 22px; height: 22px; place-items: center; border-radius: 50%; color: var(--teal-dark); background: var(--teal-pale); }
.purchase-benefits svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.4; }
.shipping-box { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 11px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.shipping-box__icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; color: var(--teal-dark); background: var(--teal-pale); }
/* Frete grátis anunciado antes de o cliente calcular: o cálculo desse produto
   não devolve valor nenhum, justamente por não haver o que cobrar. */
.shipping-box__free { display: inline-block; margin-top: 5px; padding: 3px 9px; border-radius: 99px; color: var(--teal-dark); background: var(--teal-pale); font-size: var(--fs-2xs); font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.shipping-box__icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.shipping-box strong, .shipping-box p { display: block; margin: 0; }
.shipping-box strong { color: var(--navy); font-size: var(--fs-xs); }
.shipping-box p { color: var(--muted); font-size: var(--fs-2xs); }
.cep-form { display: flex; width: 205px; }
.cep-form input { width: 115px; min-height: 39px; padding: 0 10px; border: 1px solid var(--line); border-radius: 8px 0 0 8px; outline: 0; font-size: var(--fs-xs); }
.cep-form button { min-width: 82px; border: 0; border-radius: 0 8px 8px 0; color: #fff; background: var(--navy); font-size: var(--fs-xs); font-weight: 800; }
.shipping-result { grid-column: 2 / -1; color: var(--success) !important; font-weight: 700; }
.button--buy { display: flex; flex-direction: column; gap: 1px; width: 100%; min-height: 63px; margin-top: 16px; border-radius: 14px; color: #fff; background: var(--teal-dark); box-shadow: 0 14px 30px rgba(36,163,150,.25); }
.button--buy:hover { background: #1d9186; }
.button--buy span { display: flex; align-items: center; gap: 9px; font-size: 16px; }
.button--buy span svg { width: 19px; }
.button--buy small { font-size: var(--fs-2xs); font-weight: 600; opacity: .75; }
.checkout-form { margin: 0; }
.checkout-form--inline { display: contents; }
.secure-note { display: flex; justify-content: center; align-items: center; gap: 6px; margin: 9px 0 17px; color: #819198; font-size: var(--fs-2xs); }
.secure-note svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.buy-assurances { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.buy-assurances > div { display: flex; align-items: center; gap: 9px; padding: 12px; border: 1px solid var(--line); border-radius: 11px; }
.buy-assurances svg { width: 22px; height: 22px; fill: none; stroke: var(--teal-dark); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.buy-assurances strong, .buy-assurances small { display: block; }
.buy-assurances strong { color: var(--navy); font-size: var(--fs-2xs); }
.buy-assurances small { color: var(--muted); font-size: var(--fs-2xs); }

.product-story { overflow: hidden; background: var(--surface); }
.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.story-copy h2 { font-size: clamp(37px, 4.5vw, 56px); }
.story-copy > p { color: var(--muted); }
.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 38px; }
.story-stats div { padding-left: 15px; border-left: 2px solid var(--teal); }
.story-stats strong, .story-stats span { display: block; }
.story-stats strong { color: var(--navy); font-size: 25px; }
.story-stats span { color: var(--muted); font-size: var(--fs-2xs); }
.story-visual { position: relative; min-height: 460px; border-radius: var(--radius-lg); background: linear-gradient(145deg, #d9efec, #b9e0dc); }
.story-wall { position: absolute; left: 50px; top: 60px; bottom: 60px; width: 80px; border-radius: 20px; background: #fff; box-shadow: 20px 0 50px rgba(18,58,82,.08); }
.story-arm { position: absolute; left: 100px; top: 150px; width: 330px; height: 24px; border-radius: 20px; background: var(--navy); transform: rotate(-15deg); transform-origin: left; box-shadow: inset 0 -6px 0 rgba(0,0,0,.09); }
.story-arm::before, .story-arm::after, .story-arm span { content: ""; position: absolute; border-radius: 50%; }
.story-arm::before { left: -17px; top: -14px; width: 52px; height: 52px; border: 9px solid #fff; background: var(--teal-dark); }
.story-arm::after { right: -17px; top: -14px; width: 52px; height: 52px; border: 9px solid #fff; background: var(--teal-dark); }
.story-arm span:first-child { right: -22px; top: 8px; width: 22px; height: 155px; border-radius: 8px; background: var(--navy); transform: rotate(15deg); transform-origin: top; }
.story-arm span:nth-child(2) { right: -50px; top: 142px; width: 78px; height: 18px; border-radius: 18px 18px 0 0; border: 9px solid var(--navy); border-bottom: 0; transform: rotate(15deg); }
.story-bag { position: absolute; right: 70px; top: 275px; width: 92px; height: 115px; border: 5px solid #fff; border-radius: 13px 13px 30px 30px; background: rgba(255,255,255,.35); box-shadow: 0 18px 35px rgba(18,58,82,.12); }
.story-bag span { position: absolute; left: 50%; bottom: -38px; width: 4px; height: 36px; background: rgba(18,58,82,.4); }
.story-callout { position: absolute; display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); color: var(--muted); font-size: var(--fs-2xs); }
.story-callout i { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-dark); box-shadow: 0 0 0 5px rgba(36,163,150,.12); }
.story-callout strong { display: block; color: var(--navy); font-size: var(--fs-xs); }
.story-callout--one { left: 20px; bottom: 30px; }
.story-callout--two { right: 15px; top: 45px; }

.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.spec-grid article { padding: 30px 25px; border: 1px solid var(--line); border-radius: 17px; background: #fff; transition: transform .2s, box-shadow .2s; }
.spec-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.spec-grid article > span { display: grid; width: 46px; height: 46px; margin-bottom: 35px; place-items: center; border-radius: 13px; color: var(--teal-dark); background: var(--teal-pale); }
.spec-grid svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.spec-grid h3 { font-size: 17px; }
.spec-grid p { margin-bottom: 0; color: var(--muted); font-size: var(--fs-xs); }

.installation { color: #fff; background: var(--navy); }
.installation-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.installation h2 { color: #fff; font-size: clamp(37px, 4vw, 52px); }
.installation p { color: #b2c8d2; }
.installation ol { padding: 0; margin: 0; list-style: none; }
.installation li { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.installation li > span { display: grid; flex: 0 0 40px; height: 40px; place-items: center; border: 1px solid rgba(111,200,195,.45); border-radius: 50%; color: var(--teal); font-size: var(--fs-sm); font-weight: 800; }
.installation li strong { color: #fff; }
.installation li p { margin: 4px 0 0; font-size: var(--fs-sm); }

.faq-section { background: var(--surface); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-grid h2 { font-size: 43px; }
.faq-grid > div:first-child p { color: var(--muted); font-size: var(--fs-sm); }
.faq-grid a { color: var(--teal-dark); font-weight: 800; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; color: var(--navy); font-size: var(--fs-md); font-weight: 800; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .2s; }
.accordion details[open] summary svg { transform: rotate(180deg); }
.accordion details p { padding: 0 35px 20px 0; color: var(--muted); font-size: var(--fs-sm); }

.product-final-cta { padding: 72px 0; color: #fff; background: linear-gradient(120deg, var(--teal-dark), #218b85); }
.product-final-cta .container { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 70px; }
.product-final-cta h2 { margin-bottom: 9px; color: #fff; font-size: 42px; }
.product-final-cta p { margin-bottom: 0; color: rgba(255,255,255,.8); font-size: var(--fs-sm); }
.product-final-cta .container > div:last-child { display: grid; grid-template-columns: auto auto; align-items: center; gap: 0 22px; }
.product-final-cta .container > div:last-child > span { font-size: var(--fs-xs); }
.product-final-cta strong { font-size: 36px; }
.product-final-cta .button { grid-row: 1 / 3; grid-column: 2; min-width: 200px; }
.mobile-buy-bar { display: none; }

@media (max-width: 1100px) {
    .site-header__inner { grid-template-columns: 210px 1fr auto; gap: 15px; }
    .brand__visual { width: 205px; }
    .primary-nav { gap: 20px; }
    .hero__grid { gap: 28px; }
    .floating-card--top { right: 8px; }
    .floating-card--bottom { left: 8px; }
    .product-layout { gap: 42px; }
    .product-showcase__content { padding: 45px 38px; }
    .pain-grid { gap: 45px; }
    .pain-cards article { padding-inline: 20px; }
}

@media (max-width: 900px) {
    .section { padding: 82px 0; }
    .site-header__inner { grid-template-columns: 1fr auto; min-height: 70px; }
    .brand__visual { width: 205px; }
    .nav-toggle { display: block; z-index: 3; }
    .header-cta { display: none; }
    .primary-nav { position: fixed; inset: 70px 0 auto; display: grid; align-content: start; justify-content: stretch; gap: 0; padding: 24px 20px 35px; background: #fff; box-shadow: 0 25px 40px rgba(18,58,82,.15); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: .25s ease; }
    .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .primary-nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); }
    .hero__grid { grid-template-columns: 1fr; padding-top: 70px; text-align: center; }
    .hero__content > p { margin-inline: auto; }
    .hero__actions, .hero__proof { justify-content: center; }
    .hero__visual { width: min(600px, 100%); margin-inline: auto; }
    .viewer-shell--hero { transform: none; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .trust-grid > div:nth-child(2) { border-right: 0; }
    .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .section-heading--split, .product-showcase, .pain-grid, .newsletter__inner, .story-grid, .installation-grid, .faq-grid { grid-template-columns: 1fr; }
    .concept-grid { grid-template-columns: 1fr; }
    .concept-heading { grid-template-columns: 1fr; gap: 14px; }
    .section-heading--split { gap: 22px; }
    .product-showcase__media { min-height: 450px; }
    .pain-grid { gap: 55px; }
    .process-grid, .spec-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .product-layout { grid-template-columns: 1fr; }
    .product-gallery { max-width: 650px; width: 100%; margin-inline: auto; }
    .product-info { max-width: 650px; margin-inline: auto; }
    .story-grid { gap: 55px; }
    .installation-grid, .faq-grid { gap: 55px; }
    .product-final-cta .container { grid-template-columns: 1fr; gap: 30px; }
    .product-final-cta .container > div:last-child { justify-self: start; }
}

@media (max-width: 620px) {
    [data-aos] { opacity: 1 !important; transform: none !important; }
    body.product-page { padding-bottom: 69px; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .brand__visual { width: 185px; }
    /* Abaixo de 620px o cabeçalho não comporta a assinatura sem espremer a
       busca. Ela sai da tela, mas continua no alt da imagem — leitor de tela e
       busca seguem lendo. */
    .brand__tagline { display: none; }
    .site-header__inner { min-height: 66px; }
    .primary-nav { inset: 66px 0 auto; }
    .section { padding: 70px 0; }
    .hero__grid { min-height: auto; padding: 58px 0 65px; }
    .hero h1 { font-size: 39px; }
    .hero__content > p { font-size: var(--fs-md); }
    .hero__actions { align-items: stretch; flex-direction: column; }
    .hero__actions .button { width: 100%; }
    .hero__proof { margin-top: 28px; }
    .viewer-shell--hero { height: 410px; }
    .floating-card { display: none; }
    .trust-grid > div { min-height: 84px; padding: 10px; justify-content: flex-start; }
    .trust-grid svg { width: 24px; }
    .section-heading h2 { font-size: 35px; }
    .product-showcase__media { min-height: 370px; }
    .product-silhouette { transform: translate(-50%,-50%) scale(.78); }
    .product-showcase__content { padding: 35px 25px; }
    .product-showcase h3 { font-size: 29px; }
    .product-showcase__buy { align-items: stretch; flex-direction: column; }
    .product-showcase__buy .button { width: 100%; }
    .concept-heading { margin-top: 58px; }
    .concept-card__visual { height: 230px; }
    .organizer-model, .otoscope-model { transform: translate(-50%,-50%) scale(.84); }
    .concept-card__content { padding: 25px 22px; }
    .concept-card__content > p { min-height: 0; }
    .concept-card__footer { align-items: stretch; flex-direction: column; }
    .concept-card__footer > a { justify-content: center; }
    .pain-cards { grid-template-columns: 1fr; }
    .pain-cards article { min-height: auto; padding: 27px 15px; border-left: 0; border-top: 1px solid rgba(255,255,255,.12); }
    .pain-cards h3 { margin-top: 35px; }
    .process-grid, .spec-grid { grid-template-columns: 1fr; }
    .process-grid article { min-height: 260px; }
    .process-icon { margin-bottom: 40px; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 12px; }
    .whatsapp-float { bottom: 78px; width: 50px; height: 50px; }

    .breadcrumb { min-height: 48px; }
    .product-main { padding-top: 5px; padding-bottom: 68px; }
    .product-layout { gap: 35px; }
    .viewer-shell--product { height: 445px; }
    .product-sale { top: 54px; }
    .gallery-thumbs { display: none; }
    .product-info h1 { font-size: 37px; }
    .purchase-benefits { grid-template-columns: 1fr; }
    .shipping-box { grid-template-columns: 38px 1fr; }
    .cep-form { grid-column: 1 / -1; width: 100%; }
    .cep-form input { flex: 1; }
    .shipping-result { grid-column: 1 / -1; }
    .story-stats { gap: 8px; }
    .story-stats strong { font-size: 21px; }
    .story-visual { min-height: 360px; overflow: hidden; }
    .story-visual { transform: none; }
    .story-wall { left: 25px; top: 35px; bottom: 35px; }
    .story-arm { left: 80px; top: 115px; width: 220px; }
    .story-bag { right: 15px; top: 220px; }
    .story-callout--two { display: none; }
    .faq-grid h2 { font-size: 37px; }
    .product-final-cta { padding: 55px 0; }
    .product-final-cta h2 { font-size: 34px; }
    .product-final-cta .container > div:last-child { width: 100%; grid-template-columns: 1fr; }
    .product-final-cta .button { grid-row: auto; grid-column: auto; width: 100%; margin-top: 16px; }
    .mobile-buy-bar { position: fixed; z-index: 89; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 69px; padding: 9px 14px; border-top: 1px solid var(--line); background: #fff; box-shadow: 0 -8px 25px rgba(18,58,82,.12); }
    .mobile-buy-bar del, .mobile-buy-bar strong { display: block; }
    .mobile-buy-bar del { color: #8c9ba2; font-size: var(--fs-2xs); }
    .mobile-buy-bar strong { color: var(--navy); font-size: 20px; }
    .mobile-buy-bar form { margin-left: auto; }
    .mobile-buy-bar button { min-width: 165px; padding: 12px 19px; border: 0; border-radius: 10px; color: #fff; background: var(--teal-dark); font-size: var(--fs-sm); font-weight: 800; text-align: center; }
}

/* Catalog */
.catalog-page { background: #fff; }
.catalog-hero { position: relative; overflow: hidden; padding: 78px 0 68px; background: linear-gradient(125deg, #eff9f7, #d9efec); }
.catalog-hero::before { content: ""; position: absolute; width: 360px; height: 360px; right: -80px; top: -180px; border: 1px solid rgba(18,58,82,.08); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.18), 0 0 0 130px rgba(255,255,255,.12); }
.catalog-hero__inner { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 70px; }
.catalog-hero .kicker { margin-bottom: 12px; }
.catalog-hero h1 { max-width: 720px; margin-bottom: 17px; font-size: clamp(42px, 5vw, 64px); }
.catalog-hero h1 span { color: var(--teal-dark); }
.catalog-hero p { max-width: 680px; margin: 0; color: #536c77; font-size: var(--fs-md); }
.catalog-hero__stats { display: grid; grid-template-columns: repeat(3, minmax(95px,1fr)); min-width: 390px; overflow: hidden; border: 1px solid rgba(18,58,82,.09); border-radius: 18px; background: rgba(255,255,255,.65); backdrop-filter: blur(10px); }
.catalog-hero__stats div { min-height: 104px; padding: 22px 17px; border-right: 1px solid rgba(18,58,82,.08); }
.catalog-hero__stats div:last-child { border: 0; }
.catalog-hero__stats strong, .catalog-hero__stats span { display: block; }
.catalog-hero__stats strong { color: var(--navy); font-size: 29px; line-height: 1.15; }
.catalog-hero__stats span { margin-top: 4px; color: var(--muted); font-size: var(--fs-2xs); line-height: 1.35; }
.catalog-breadcrumb { display: flex; align-items: center; gap: 9px; min-height: 60px; color: var(--muted); font-size: var(--fs-xs); }
.catalog-breadcrumb a:hover { color: var(--teal-dark); }
.catalog-breadcrumb strong { color: var(--navy); }
.catalog-section { padding: 45px 0 100px; }
.catalog-toolbar { display: grid; grid-template-columns: 260px 1fr; gap: 48px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.catalog-toolbar__heading .kicker { margin-bottom: 7px; }
.catalog-toolbar__heading h2 { margin-bottom: 7px; font-size: 32px; }
.catalog-toolbar__heading p { margin: 0; color: var(--muted); font-size: var(--fs-xs); }
.catalog-toolbar__heading p strong { color: var(--teal-dark); }
.catalog-filters { display: grid; grid-template-columns: minmax(230px,1.5fr) repeat(3,minmax(130px,1fr)) auto; align-items: end; gap: 11px; }
.catalog-filters label > span { display: block; margin-bottom: 6px; color: var(--muted); font-size: var(--fs-2xs); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.catalog-filters select, .catalog-search > div { width: 100%; height: 45px; border: 1px solid var(--line); border-radius: 11px; color: var(--navy); background: #fff; font-size: var(--fs-xs); font-weight: 700; outline: 0; transition: border-color .2s, box-shadow .2s; }
.catalog-filters select { padding: 0 12px; }
.catalog-filters select:focus, .catalog-search > div:focus-within { border-color: var(--teal-dark); box-shadow: 0 0 0 3px rgba(36,163,150,.09); }
.catalog-search > div { display: flex; align-items: center; gap: 8px; padding: 0 12px; }
.catalog-search svg { width: 17px; height: 17px; flex: 0 0 auto; fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; }
.catalog-search input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: var(--fs-xs); }
.catalog-clear { height: 45px; padding: 0 14px; border: 0; color: var(--teal-dark); background: transparent; font-size: var(--fs-2xs); font-weight: 800; white-space: nowrap; }
.catalog-clear:hover { text-decoration: underline; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 25px; padding-top: 38px; }
/* Cartão do catálogo em coluna: a grade estica todos à altura do mais alto,
   e sem isso o rodapé (preço + botão) parava logo abaixo do texto — descrição
   ou título com uma linha a mais desalinhava o botão em relação aos vizinhos. */
.catalog-card { display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s; }
/* `display: flex` na regra de classe vence o `[hidden] { display: none }` do navegador,
   e os filtros do catálogo escondem cartão pelo atributo hidden — sem esta linha o filtro
   deixaria de esconder qualquer produto. */
.catalog-card[hidden] { display: none; }
.catalog-card:hover { border-color: rgba(36,163,150,.32); box-shadow: 0 22px 48px rgba(18,58,82,.12); transform: translateY(-5px); }
.catalog-card__visual { position: relative; display: block; height: 285px; overflow: hidden; background: linear-gradient(145deg,#f5faf9,#e1efed); }
.catalog-card__visual::before { content: ""; position: absolute; left: 50%; top: 51%; width: 220px; height: 220px; border: 1px solid rgba(18,58,82,.07); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.2); transform: translate(-50%,-50%); }
.catalog-card__visual .product-art__shape { transform: translate(-50%,-50%) scale(1.18); transition: transform .3s ease; }
.catalog-card:hover .catalog-card__visual .product-art__shape { transform: translate(-50%,-53%) scale(1.24) rotate(-1deg); }
.catalog-card__discount { position: absolute; z-index: 3; left: 18px; top: 18px; display: grid; min-width: 48px; min-height: 29px; place-items: center; border-radius: 99px; color: #fff; background: var(--teal-dark); font-size: var(--fs-2xs); font-weight: 800; }
.catalog-card__status { position: absolute; z-index: 3; right: 17px; top: 18px; display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 99px; color: var(--navy); background: rgba(255,255,255,.86); font-size: var(--fs-2xs); font-weight: 800; text-transform: uppercase; backdrop-filter: blur(8px); }
.catalog-card__status i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(29,154,113,.12); }
.catalog-card__status--development i { background: #e2a53c; box-shadow: 0 0 0 3px rgba(226,165,60,.13); }
/* Esgotado: cinza, não âmbar. Âmbar é "vem por aí" e convida a esperar; sem
   estoque é ausência, e precisa ler diferente de "em desenvolvimento". */
.catalog-card__status--soldout { color: var(--muted); }
.catalog-card__status--soldout i { background: var(--muted); box-shadow: 0 0 0 3px rgba(102,121,133,.13); }
.catalog-card__cart:disabled { color: var(--muted); background: var(--surface); border-color: var(--line); cursor: not-allowed; }
.catalog-card__view { position: absolute; z-index: 3; left: 50%; bottom: 15px; display: flex; align-items: center; gap: 12px; min-height: 38px; padding: 0 16px; border-radius: 99px; color: #fff; background: var(--navy); box-shadow: 0 10px 25px rgba(18,58,82,.18); font-size: var(--fs-2xs); font-weight: 800; opacity: 0; transform: translate(-50%,9px); transition: opacity .2s, transform .2s; }
.catalog-card:hover .catalog-card__view, .catalog-card:focus-within .catalog-card__view { opacity: 1; transform: translate(-50%,0); }
.catalog-card__view b { font-size: var(--fs-md); }
.catalog-card__body { display: flex; flex: 1; flex-direction: column; padding: 25px 25px 27px; }
.catalog-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: var(--fs-2xs); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.catalog-card__meta span:first-child { color: var(--teal-dark); }
.catalog-card h3 { display: -webkit-box; min-height: 53px; margin: 12px 0 9px; overflow: hidden; font-size: 20px; line-height: 1.3; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.catalog-card h3 a:hover { color: var(--teal-dark); }
.catalog-card__body > p { min-height: 58px; margin-bottom: 15px; color: var(--muted); font-size: var(--fs-xs); }
.catalog-card__tags { display: flex; gap: 6px; flex-wrap: wrap; min-height: 29px; margin-bottom: 20px; }
.catalog-card__tags span { padding: 5px 8px; border-radius: 7px; color: #52717a; background: var(--surface); font-size: var(--fs-2xs); font-weight: 700; }
.catalog-card__footer { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 15px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.catalog-card__footer del, .catalog-card__footer strong, .catalog-card__footer small { display: block; }
.catalog-card__footer del { color: #95a4aa; font-size: var(--fs-2xs); }
.catalog-card__footer strong { color: var(--navy); font-size: 21px; }
.catalog-card__footer small { color: var(--muted); font-size: var(--fs-2xs); }
.catalog-card__footer > a { display: inline-flex; align-items: center; justify-content: center; min-height: 39px; padding: 0 15px; border-radius: 99px; color: #fff; background: var(--navy); font-size: var(--fs-2xs); font-weight: 800; white-space: nowrap; transition: background .2s, transform .2s; }
.catalog-card__footer > a:hover { background: var(--teal-dark); transform: translateY(-2px); }
.catalog-empty { padding: 70px 20px; text-align: center; }
.catalog-empty[hidden] { display: none; }
.catalog-empty > span { display: grid; width: 60px; height: 60px; margin: 0 auto 18px; place-items: center; border-radius: 50%; color: var(--teal-dark); background: var(--teal-pale); font-size: 27px; }
.catalog-empty h2 { margin-bottom: 7px; font-size: 25px; }
.catalog-empty p { color: var(--muted); font-size: var(--fs-xs); }
.catalog-empty button { min-height: 40px; padding: 0 18px; border: 1px solid var(--navy); border-radius: 99px; color: var(--navy); background: #fff; font-size: var(--fs-2xs); font-weight: 800; }
.catalog-help { padding: 72px 0; color: #fff; background: linear-gradient(120deg,var(--navy),#1a5b70); }
.catalog-help__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.catalog-help .kicker { margin-bottom: 9px; }
.catalog-help h2 { margin-bottom: 8px; color: #fff; font-size: clamp(32px,4vw,46px); }
.catalog-help p { margin: 0; color: #bcd0d9; font-size: var(--fs-xs); }
.catalog-help .button { flex: 0 0 auto; }

@media (max-width: 1050px) {
    .catalog-hero__inner { grid-template-columns: 1fr; gap: 35px; }
    .catalog-hero__stats { width: min(100%,520px); }
    .catalog-toolbar { grid-template-columns: 1fr; gap: 24px; }
    .catalog-filters { grid-template-columns: minmax(230px,1.4fr) repeat(2,minmax(145px,1fr)); }
    .catalog-clear { justify-self: start; }
}
@media (max-width: 800px) {
    .catalog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .catalog-filters { grid-template-columns: 1fr 1fr; }
    .catalog-search { grid-column: 1 / -1; }
    .catalog-help__inner { align-items: flex-start; flex-direction: column; gap: 27px; }
}
@media (max-width: 560px) {
    .catalog-hero { padding: 55px 0 48px; }
    .catalog-hero h1 { font-size: 39px; }
    .catalog-hero__stats { min-width: 0; grid-template-columns: 1fr; }
    .catalog-hero__stats div { min-height: 74px; padding: 15px 18px; border-right: 0; border-bottom: 1px solid rgba(18,58,82,.08); }
    .catalog-hero__stats strong { font-size: 24px; }
    .catalog-toolbar { gap: 20px; }
    .catalog-filters { grid-template-columns: 1fr; }
    .catalog-search { grid-column: auto; }
    .catalog-grid { grid-template-columns: 1fr; }
    .catalog-card__visual { height: 265px; }
    .catalog-card__view { opacity: 1; transform: translate(-50%,0); }
    .catalog-help { padding: 56px 0; }
    .catalog-help .button { width: 100%; }
}

.shipping-result:has(.shipping-quote) { display: grid; grid-column: 1 / -1; gap: 7px; width: 100%; margin: 10px 0 0; }
.shipping-quote { display: grid; grid-template-columns: 1fr auto; gap: 1px 12px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px; color: var(--ink); background: #fff; }
.shipping-quote b { font-size: var(--fs-2xs); }
.shipping-quote > span { grid-row: 1 / 3; grid-column: 2; align-self: center; color: var(--navy); font-size: var(--fs-xs); font-weight: 800; }
.shipping-quote small { color: var(--muted); font-size: var(--fs-2xs); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Ecommerce navigation, promotional carousel and product shelf */
.site-header { overflow: visible; background: rgba(255,255,255,.97); }
/* 300px, não 220: a marca agora leva a assinatura ao lado (210 da imagem + 10
   de espaço + 75 do texto). Com 220 o texto transbordava por cima da busca. */
.site-header__inner { min-height: 76px; grid-template-columns: 300px minmax(260px, 1fr) auto auto; gap: 22px; }
.brand__visual { width: 210px; }
.header-search { display: flex; align-items: center; gap: 11px; height: 46px; padding: 0 17px; border: 1px solid #cfdbdf; border-radius: 999px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.header-search:focus-within { border-color: var(--teal-dark); box-shadow: 0 0 0 4px rgba(36,163,150,.1); }
.header-search svg { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: #667985; stroke-width: 1.8; stroke-linecap: round; }
.header-search input { width: 100%; min-width: 0; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: var(--fs-sm); }
.header-search input::placeholder { color: #89989f; }
.nav-row { position: relative; border-top: 1px solid rgba(18,58,82,.06); background: #fff; }
.primary-nav { position: static; justify-content: flex-start; gap: 0; min-height: 49px; }
.nav-link { position: relative; display: inline-flex; align-items: center; gap: 7px; min-height: 49px; padding: 0 25px; border: 0; color: #314c59; background: transparent; font-size: var(--fs-sm); font-weight: 800; white-space: nowrap; }
.primary-nav > .nav-link:first-of-type { margin-left: 5px; }
.nav-link::after { content: ""; position: absolute; left: 25px; right: 100%; bottom: -1px; height: 3px; background: var(--teal-dark); transition: right .22s ease; }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link[aria-expanded="true"]::after { right: 25px; }
.nav-link--featured { padding-left: 0; color: var(--teal-dark); }
.nav-link--featured::after { left: 0; }
.nav-link--featured:hover::after, .nav-link--featured[aria-expanded="true"]::after { right: 25px; }
.nav-link--featured svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.nav-link--sale { margin-left: auto; color: #d35454; }
.nav-item { position: static; }
.mega-menu { position: absolute; z-index: 102; top: 100%; left: max(20px, calc((100% - var(--container)) / 2)); display: grid; grid-template-columns: 315px 290px; overflow: hidden; border: 1px solid var(--line); border-top: 3px solid var(--teal-dark); border-radius: 0 0 18px 18px; background: #fff; box-shadow: 0 26px 60px rgba(10,37,52,.22); opacity: 0; visibility: hidden; transform: translateY(-7px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.nav-item.is-open .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu__list { padding: 12px 0; }
.mega-menu__list a { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 46px; padding: 0 24px; color: #354f5b; font-size: var(--fs-sm); font-weight: 700; transition: color .15s, background .15s, padding .15s; }
.mega-menu__list a:hover, .mega-menu__list a:focus-visible { padding-left: 29px; color: var(--teal-dark); background: var(--teal-pale); }
.mega-menu__list b { color: #9aabad; font-size: 22px; font-weight: 400; }
/* Os painéis ficam empilhados no mesmo espaço: o da linha sob o mouse fica
   visível, os outros esperam. Empilhar (e não trocar o texto de um painel só)
   é o que permite a transição suave entre um e outro. */
.mega-menu__panels { position: relative; min-height: 248px; background: linear-gradient(145deg, var(--navy), #1b5870); }
/* Seletor com dois níveis de propósito: `.primary-nav a` (bem no começo deste
   arquivo) vence `.mega-menu__feature` sozinho e impunha ao card o texto
   escuro do menu e position:relative — daí o título sair cinza sobre o azul
   e, com vários painéis, um empilhar embaixo do outro. */
.mega-menu__panels .mega-menu__feature { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: end; padding: 30px; color: #fff; background: radial-gradient(circle at 85% 10%, rgba(111,200,195,.42), transparent 35%), linear-gradient(145deg, var(--navy), #1b5870); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .22s ease, transform .22s ease, visibility .22s; }
.mega-menu__panels .mega-menu__feature.is-active { opacity: 1; visibility: visible; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .mega-menu__panels .mega-menu__feature { transition: opacity .01s linear; transform: none; } }
.mega-menu__feature strong { max-width: 210px; margin: 12px 0 9px; font-size: 22px; line-height: 1.14; }
.mega-menu__feature small { color: #c5d7df; font-size: var(--fs-xs); line-height: 1.55; }
.mega-menu__eyebrow { color: var(--teal); font-size: var(--fs-2xs); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.mega-menu__cta { margin-top: 23px; font-size: var(--fs-xs); font-weight: 800; }
.menu-scrim { position: fixed; z-index: 90; inset: 0; background: rgba(8,25,34,.58); opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
body.mega-menu-open { overflow: hidden; }
body.mega-menu-open .menu-scrim { opacity: 1; visibility: visible; }

.commerce-hero { position: relative; padding: 24px 0 15px; overflow: hidden; background: #f6faf9; }
/* Altura do carrossel: acompanha o conteúdo.
   Era `height` fixa com os slides em position:absolute — banner com título
   de três linhas passava da medida e tinha preço e botão cortados pelo
   overflow. Agora a moldura é uma grade de uma célula só e todos os slides
   ocupam essa célula: eles continuam empilhados (é o que o carrossel
   precisa), mas a altura passa a ser a do mais alto. O clamp vira piso, não
   teto, para banner curto não achatar a faixa. */
.commerce-hero__viewport { position: relative; display: grid; min-height: clamp(360px, 30vw, 440px); overflow: hidden; border-radius: 25px; box-shadow: var(--shadow-sm); }
.commerce-slide { position: relative; grid-area: 1 / 1; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; padding: 42px 75px; color: #fff; background: linear-gradient(118deg, #176c73, #24a396); opacity: 0; visibility: hidden; transform: translateX(22px); transition: opacity .42s ease, transform .42s ease, visibility .42s; }
.commerce-slide--active { z-index: 1; opacity: 1; visibility: visible; transform: translateX(0); }
.commerce-slide--mint { color: var(--navy); background: linear-gradient(118deg, #e2f5f2, #bce4de); }
.commerce-slide--navy { background: linear-gradient(118deg, #0c3045, #195b70); }
.commerce-slide::before { content: ""; position: absolute; width: 310px; height: 310px; right: -80px; top: -130px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.05), 0 0 0 110px rgba(255,255,255,.03); }
.commerce-slide__copy { position: relative; z-index: 2; max-width: 560px; }
.commerce-pill { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px; padding: 7px 12px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; font-size: var(--fs-2xs); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.commerce-slide--mint .commerce-pill { border-color: rgba(18,58,82,.15); }
.commerce-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(111,200,195,.16); }
.commerce-slide--mint .commerce-pill i { background: var(--teal-dark); }
.commerce-slide h1, .commerce-slide h2 { margin-bottom: 13px; color: inherit; font-size: clamp(30px, 3vw, 44px); }
.commerce-slide h1 em, .commerce-slide h2 em { color: #c3f1ec; font-style: normal; }
.commerce-slide--mint h2 em { color: var(--teal-dark); }
.commerce-slide__copy > p { max-width: 530px; margin-bottom: 18px; color: rgba(255,255,255,.78); font-size: var(--fs-md); }
.commerce-slide--mint .commerce-slide__copy > p { color: #506975; }
.commerce-slide__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.commerce-slide__price span { color: rgba(255,255,255,.65); font-size: var(--fs-xs); text-decoration: line-through; }
.commerce-slide__price strong { color: #fff; font-size: 30px; }
.commerce-slide .button--white { color: var(--navy); background: #fff; box-shadow: 0 13px 30px rgba(7,39,50,.18); }
.commerce-slide__art { position: relative; z-index: 1; height: 300px; margin-left: 35px; border: 1px solid rgba(255,255,255,.25); border-radius: 32px; background: rgba(255,255,255,.87); box-shadow: 12px 12px 0 rgba(8,46,57,.18); }
.commerce-slide--mint .commerce-slide__art { background: rgba(255,255,255,.58); box-shadow: 12px 12px 0 rgba(18,58,82,.12); }
.commerce-slide__art .product-silhouette { top: 53%; transform: translate(-50%,-50%) scale(.78); }
.commerce-slide__art .organizer-model, .commerce-slide__art .otoscope-model { left: 50%; top: 50%; transform: translate(-50%,-50%) scale(1.1); }
.promo-discount { position: absolute; z-index: 3; left: -28px; top: 25px; display: grid; width: 82px; height: 82px; place-items: center; align-content: center; border: 6px solid #fff; border-radius: 20px; color: #fff; background: #f07a54; font-size: 25px; font-weight: 800; line-height: 1; transform: rotate(-5deg); box-shadow: 0 10px 20px rgba(18,58,82,.15); }
.promo-discount small { font-size: var(--fs-sm); }
.carousel-arrow { position: absolute; z-index: 5; top: 50%; display: grid; width: 44px; height: 44px; place-items: center; padding: 0 0 4px; border: 1px solid rgba(18,58,82,.12); border-radius: 50%; color: var(--navy); background: #fff; box-shadow: 0 7px 20px rgba(18,58,82,.12); font-size: 31px; line-height: 1; transform: translateY(-50%); transition: transform .2s, background .2s; }
.carousel-arrow:hover { background: var(--teal-pale); transform: translateY(-50%) scale(1.06); }
.carousel-arrow--prev { left: 18px; }
.carousel-arrow--next { right: 18px; }
.carousel-dots { display: flex; justify-content: center; gap: 7px; min-height: 23px; padding-top: 10px; }
.carousel-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 99px; background: #c5d3d6; transition: width .2s, background .2s; }
.carousel-dots button.is-active { width: 24px; background: var(--teal-dark); }

.product-shelf { padding: 72px 0 85px; overflow: hidden; background: #fff; }
.shelf-heading { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 27px; }
.shelf-heading .kicker { margin-bottom: 6px; }
.shelf-heading h2 { margin: 0; font-size: clamp(30px, 3.5vw, 43px); }
.shelf-controls { display: flex; gap: 9px; }
.shelf-controls button { display: grid; width: 42px; height: 42px; place-items: center; padding: 0 0 4px; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); background: #fff; font-size: 27px; transition: color .2s, border-color .2s, background .2s; }
.shelf-controls button:hover { color: #fff; border-color: var(--navy); background: var(--navy); }
.product-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(215px, 1fr); grid-template-rows: 1fr; gap: 18px; overflow-x: auto; padding-bottom: 12px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.product-rail::-webkit-scrollbar { display: none; }
/* Vitrine em coluna de altura cheia: a trilha estica todos os cartões até
   a altura do mais alto, mas o conteúdo ficava colado no topo — título de
   1, 2 ou 3 linhas, ou a linha de avaliação que só aparece com nota, jogava
   o botão de cada cartão para uma altura diferente. Com o rodapé preso na
   base (margin-top: auto), preço e botão ficam alinhados em qualquer largura. */
.ecommerce-card { display: flex; flex-direction: column; min-width: 0; height: 100%; scroll-snap-align: start; }
.ecommerce-card[hidden] { display: none; }
.ecommerce-card__visual { position: relative; display: block; height: 235px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: linear-gradient(145deg,#f8fbfb,#e9f4f2); transition: border-color .2s, box-shadow .2s, transform .2s; }
.ecommerce-card:hover .ecommerce-card__visual { border-color: rgba(36,163,150,.38); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.ecommerce-card__discount { position: absolute; z-index: 2; left: 0; top: 16px; padding: 7px 11px; border-radius: 0 9px 9px 0; color: var(--navy); background: #f8dea0; font-size: var(--fs-xs); font-weight: 800; }
.ecommerce-card__add { position: absolute; z-index: 2; right: 14px; bottom: 14px; display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; color: #fff; background: var(--navy); font-size: 25px; transition: background .2s, transform .2s; }
.ecommerce-card:hover .ecommerce-card__add { background: var(--teal-dark); transform: rotate(90deg); }
.ecommerce-card__body { display: flex; flex: 1; flex-direction: column; padding: 16px 2px 0; }
.ecommerce-card__category { color: var(--teal-dark); font-size: var(--fs-2xs); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
/* Reserva 2 linhas e corta em 3: nome muito longo deixava o cartão desproporcional. */
.ecommerce-card h3 { display: -webkit-box; min-height: 44px; margin: 7px 0 6px; overflow: hidden; font-size: var(--fs-md); line-height: 1.45; letter-spacing: -.02em; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.ecommerce-card__rating { margin-bottom: 8px; color: #efb73e; font-size: var(--fs-xs); letter-spacing: 1px; }
.ecommerce-card__rating small { color: #86979e; letter-spacing: 0; }
.ecommerce-card__foot { margin-top: auto; padding-top: 10px; }
.ecommerce-card__foot > del, .ecommerce-card__foot > strong, .ecommerce-card__foot > small { display: block; }
.ecommerce-card__foot > del { min-height: 17px; color: #98a5aa; font-size: var(--fs-2xs); }
.ecommerce-card__foot > strong { color: var(--navy); font-size: 21px; }
.ecommerce-card__foot > small { color: var(--muted); font-size: var(--fs-2xs); }
.ecommerce-card__button { display: flex; align-items: center; justify-content: center; min-height: 39px; margin-top: 13px; border: 1px solid var(--navy); border-radius: 999px; color: var(--navy); font-size: var(--fs-xs); font-weight: 800; opacity: 0; transform: translateY(5px); transition: opacity .2s, transform .2s, color .2s, background .2s; }
.ecommerce-card:hover .ecommerce-card__button, .ecommerce-card:focus-within .ecommerce-card__button { opacity: 1; transform: translateY(0); }
.ecommerce-card__button:hover { color: #fff; background: var(--navy); }
.product-art__shape { position: absolute; left: 50%; top: 50%; width: 130px; height: 130px; transform: translate(-50%,-50%); }
.product-art__shape i { position: absolute; display: block; background: var(--navy); }
.product-art--support .product-art__shape i:nth-child(1) { left: 9px; top: 52px; width: 23px; height: 76px; border-radius: 7px; }
.product-art--support .product-art__shape i:nth-child(2) { left: 25px; top: 52px; width: 85px; height: 12px; border-radius: 8px; transform: rotate(-24deg); transform-origin: left; }
.product-art--support .product-art__shape i:nth-child(3) { left: 92px; top: 21px; width: 11px; height: 90px; border-radius: 8px; transform: rotate(12deg); }
.product-art--support .product-art__shape i:nth-child(4) { left: 71px; top: 37px; width: 26px; height: 26px; border: 6px solid #fff; border-radius: 50%; background: var(--teal-dark); }
.product-art--organizer .product-art__shape { top: 56%; height: 88px; padding: 22px 15px 10px; border-radius: 14px; background: var(--navy); box-shadow: 0 15px 22px rgba(18,58,82,.18); }
.product-art--organizer .product-art__shape i { position: relative; display: inline-block; width: 19px; height: 52px; margin: 0 2px; border: 3px solid #fff; border-radius: 6px 6px 10px 10px; background: var(--teal); }
.product-art--otoscope .product-art__shape i:nth-child(1) { left: 12px; right: 12px; bottom: 10px; height: 70px; border-radius: 14px; }
.product-art--otoscope .product-art__shape i:nth-child(2) { left: 28px; top: 18px; width: 24px; height: 82px; border: 5px solid var(--teal); border-radius: 11px; background: #fff; transform: rotate(8deg); }
.product-art--otoscope .product-art__shape i:nth-child(3), .product-art--otoscope .product-art__shape i:nth-child(4) { right: 30px; top: 45px; width: 18px; height: 55px; clip-path: polygon(30% 0,70% 0,100% 100%,0 100%); background: var(--teal); }
.product-art--otoscope .product-art__shape i:nth-child(4) { right: 57px; top: 57px; height: 43px; }
.product-art--hooks .product-art__shape i { width: 22px; height: 85px; border: 8px solid var(--navy); border-top: 0; border-radius: 0 0 20px 20px; background: transparent; transform: rotate(18deg); }
.product-art--hooks .product-art__shape i:nth-child(1) { left: 19px; top: 18px; }.product-art--hooks .product-art__shape i:nth-child(2) { left: 55px; top: 26px; transform: rotate(-8deg); }.product-art--hooks .product-art__shape i:nth-child(3) { right: 18px; top: 12px; transform: rotate(28deg); }
.product-art--cables .product-art__shape { border: 13px solid var(--navy); border-radius: 50%; box-shadow: inset 0 0 0 8px #fff, inset 0 0 0 19px var(--teal); }
.product-art--cables .product-art__shape i:nth-child(1) { left: 54px; top: 54px; width: 70px; height: 14px; border-radius: 9px; transform: rotate(35deg); transform-origin: left; }
.product-art--tray .product-art__shape { top: 57%; height: 75px; border-radius: 8px 8px 18px 18px; background: var(--navy); box-shadow: inset 0 12px 0 var(--teal), 0 18px 25px rgba(18,58,82,.18); transform: translate(-50%,-50%) perspective(200px) rotateX(-9deg); }
.product-art--tray .product-art__shape i:nth-child(1) { left: 13px; right: 13px; top: -31px; height: 38px; border-radius: 7px; background: #d5ebe8; }

.cookie-notice { position: fixed; z-index: 200; left: 50%; bottom: 22px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; width: min(calc(100% - 32px), 920px); padding: 20px 22px; border: 1px solid rgba(18,58,82,.11); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: 0 24px 65px rgba(7,37,52,.24); transform: translateX(-50%); backdrop-filter: blur(14px); animation: cookie-in .45s ease both; }
.cookie-notice[hidden] { display: none; }
@keyframes cookie-in { from { opacity: 0; transform: translate(-50%, 18px); } }
.cookie-notice__icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 14px; background: #fff4d5; font-size: 25px; }
.cookie-notice__copy h2 { margin: 0 0 3px; font-size: 16px; }
.cookie-notice__copy p { margin: 0; color: var(--muted); font-size: var(--fs-xs); line-height: 1.55; }
.cookie-notice__copy a { color: var(--teal-dark); font-size: var(--fs-2xs); font-weight: 800; text-decoration: underline; }
.cookie-notice__actions { display: flex; gap: 9px; }
.cookie-button { min-height: 42px; padding: 0 16px; border-radius: 999px; font-size: var(--fs-xs); font-weight: 800; }
.cookie-button--ghost { border: 1px solid var(--line); color: var(--navy); background: #fff; }
.cookie-button--primary { border: 1px solid var(--navy); color: #fff; background: var(--navy); }

@media (max-width: 1050px) {
    .site-header__inner { grid-template-columns: 185px minmax(220px,1fr) auto auto; gap: 14px; }
    .brand__visual { width: 180px; }
    /* Daqui para baixo a coluna da marca cai para 185px, que não comporta a
       assinatura ao lado — ela transbordava por cima da busca. Sai da tela,
       mas continua no alt da imagem. */
    .brand__tagline { display: none; }
    .nav-link { padding-inline: 18px; }
    .nav-link::after { left: 18px; }.nav-link:hover::after,.nav-link:focus-visible::after { right: 18px; }
    .commerce-slide { padding-inline: 60px; }
    .commerce-slide__art { margin-left: 10px; transform: scale(.92); }
}

@media (max-width: 900px) {
    .site-header__inner { grid-template-columns: 1fr auto auto; min-height: 70px; }
    .brand__visual { width: 195px; }
    .header-search { grid-column: 1 / -1; grid-row: 2; height: 42px; margin-bottom: 12px; }
    .nav-toggle { display: block; grid-column: 3; grid-row: 1; }
    .header-cta { grid-column: 2; grid-row: 1; min-width: 44px; padding: 0 13px; }
    .header-cta__label { display: none; }
    .nav-row { border: 0; }
    .primary-nav { position: fixed; z-index: 103; inset: 124px 0 auto; display: grid; align-content: start; justify-content: stretch; min-height: 0; max-height: calc(100vh - 124px); gap: 0; padding: 14px 20px 28px; overflow-y: auto; background: #fff; box-shadow: 0 25px 40px rgba(18,58,82,.15); transform: translateY(-135%); opacity: 0; pointer-events: none; transition: .25s ease; }
    .primary-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .primary-nav > .nav-link:first-of-type { margin-left: 0; }
    .nav-link, .nav-link--featured { justify-content: flex-start; min-height: 48px; padding: 0 7px; border-bottom: 1px solid var(--line); }
    .nav-link::after { display: none; }
    .nav-link--sale { margin-left: 0; }
    .nav-item--mega { display: grid; }
    .mega-menu { position: static; display: none; grid-template-columns: 1fr; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .nav-item.is-open .mega-menu { display: block; }
    .mega-menu__panels { display: none; }
    .mega-menu__feature { display: none; }
    .mega-menu__list { padding: 0 0 8px 13px; }
    .mega-menu__list a { min-height: 40px; padding: 0 15px; }
    body.mega-menu-open { overflow: hidden; }
    body.mega-menu-open .menu-scrim { display: none; }
    .commerce-hero { padding-top: 15px; }
    /* Empilhado, a moldura passa a ser a do banner mais alto, então os 620px
       fixos viravam ar sobrando embaixo. Aqui viram só um piso para banner
       muito curto — a altura de verdade vem do conteúdo. */
    .commerce-hero__viewport { min-height: 400px; }
    /* `auto auto` e não `auto 260px`: a arte já tem altura própria, e a linha
       fixa maior que ela deixava uma faixa morta no fim do slide.
       `align-content: center` reparte a sobra igualmente em cima e embaixo, o
       que mantém todo banner enquadrado do mesmo jeito — antes a sobra ia
       toda para a linha do texto, e cada banner começava numa altura
       diferente ao passar o carrossel. */
    .commerce-slide { grid-template-columns: 1fr; grid-template-rows: auto auto; align-content: center; gap: 24px; padding: 44px 60px 40px; text-align: center; }
    .commerce-slide__copy { margin-inline: auto; }
    .commerce-slide__copy > p { margin-inline: auto; }
    .commerce-slide__price { justify-content: center; }
    .commerce-slide__art { width: min(430px,90%); height: 215px; margin: 0 auto; }
    .commerce-slide__art .product-silhouette { transform: translate(-50%,-50%) scale(.6); }
    .commerce-slide__art .organizer-model, .commerce-slide__art .otoscope-model { transform: translate(-50%,-50%) scale(.85); }
    .product-rail { grid-auto-columns: minmax(220px, 43%); }
    .ecommerce-card__button { opacity: 1; transform: none; }
    .cookie-notice { grid-template-columns: auto 1fr; }
    .cookie-notice__actions { grid-column: 1 / -1; justify-content: flex-end; }
}

@media (max-width: 620px) {
    .site-header__inner { min-height: 65px; }
    .brand__visual { width: 172px; }
    .primary-nav { inset: 119px 0 auto; max-height: calc(100vh - 119px); }
    .commerce-hero__viewport { width: calc(100% - 20px); min-height: 360px; border-radius: 18px; }
    .commerce-slide { grid-template-rows: auto auto; gap: 20px; padding: 36px 26px 34px; }
    .commerce-slide h1, .commerce-slide h2 { font-size: 30px; }
    .commerce-slide__copy > p { font-size: var(--fs-sm); }
    .commerce-slide__art { width: 92%; height: 185px; border-radius: 22px; }
    .promo-discount { left: -17px; top: 15px; width: 68px; height: 68px; border-width: 4px; font-size: 20px; }
    .carousel-arrow { width: 38px; height: 38px; font-size: 27px; }
    .carousel-arrow--prev { left: 8px; }.carousel-arrow--next { right: 8px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .product-shelf { padding: 58px 0 65px; }
    .shelf-heading { align-items: center; }
    .shelf-heading h2 { font-size: 30px; }
    .shelf-controls { display: none; }
    .product-rail { grid-auto-columns: minmax(205px, 76%); }
    .ecommerce-card__visual { height: 215px; }
    .cookie-notice { bottom: 12px; grid-template-columns: 1fr; gap: 10px; padding: 18px; }
    .cookie-notice__icon { display: none; }
    .cookie-notice__actions { grid-column: auto; display: grid; grid-template-columns: 1fr 1fr; }
    .cookie-button { padding-inline: 10px; }
}

/* Foto real do produto: entra no lugar da ilustração quando o cadastro tem imagem */
.product-art__photo { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; padding: 18px; object-fit: contain; transition: transform .3s ease; }
.ecommerce-card:hover .product-art__photo, .catalog-card:hover .product-art__photo { transform: scale(1.04); }
.commerce-slide__photo { position: absolute; inset: 18px; width: calc(100% - 36px); height: calc(100% - 36px); object-fit: contain; }
/* Foto do produto: cabe inteira na moldura, sem corte.
   `max-height: 100%` não segurava nada aqui — a linha da grade tinha altura
   automática, então a porcentagem não tinha contra o que resolver e virava
   "sem limite". Foto de celular em pé (1600x2844) era desenhada com 950px numa
   caixa de 585px e o `overflow: hidden` da moldura cortava 365px da base.
   `minmax(0, 1fr)` dá à linha uma altura definida; a imagem passa a preencher a
   caixa e o `object-fit: contain` a encaixa inteira, mantendo a proporção. */
.viewer-shell--photo { display: grid; grid-template-rows: minmax(0, 1fr); place-items: center; padding: 28px; }
.product-photo { width: 100%; height: 100%; border-radius: 18px; object-fit: contain; }
.product-showcase__photo { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; padding: 46px; object-fit: contain; }
.concept-card__photo { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; padding: 26px; object-fit: contain; }

/* ── Galeria do produto ───────────────────────────────────────────────
   Miniaturas das fotos cadastradas. Diferente de .gallery-thumbs, que
   pertence ao modelo 3D e some no celular: estas são o único jeito de
   ver as outras fotos, então continuam visíveis em qualquer largura. */
.product-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 10px; margin-top: 15px; }
.product-thumb { height: 84px; padding: 6px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; transition: border-color .18s ease; }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-thumb:hover { border-color: var(--teal); }
.product-thumb.is-active { border-color: var(--teal-dark); box-shadow: inset 0 0 0 1px var(--teal-dark); }

/* Seção "Sobre o produto": foto real no lugar da ilustração desenhada */
.story-visual--photo { display: grid; overflow: hidden; padding: 34px; place-items: center; }
.story-visual--photo img { width: 100%; max-height: 400px; border-radius: 18px; object-fit: contain; }
.story-text p { margin-bottom: 14px; color: var(--muted); }
.story-text p:last-child { margin-bottom: 0; }
.story-points { display: grid; gap: 11px; margin-top: 28px; }
.story-points li { position: relative; padding-left: 26px; color: var(--muted); font-size: var(--fs-sm); }
.story-points li::before { content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; border-radius: 50%; background: var(--teal-dark); box-shadow: 0 0 0 4px rgba(36,163,150,.14); }
