:root {
    --page-bg: #f5f7f2;
    --surface: #ffffff;
    --surface-soft: #eef6e8;
    --green-900: #0f3d2e;
    --green-800: #145239;
    --green-700: #1f8f4d;
    --green-100: #e9f6eb;
    --yellow: #ffe066;
    /* dourado/bronze da placa oficial da marca (JAC-451); dedicada e nao
       redefinida em shared/home-theme.css, pra ficar estavel nos dois temas -
       --yellow acima e um nome legado que na verdade aponta pro verde, nao serve */
    --gold-700: #c9a15a;
    --text: #1f2933;
    --muted: #687366;
    --border: #dce6d6;
    --shadow: 0 20px 50px rgba(15, 61, 46, .12);
    --font-main: Inter, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
    --font-heading: "Space Grotesk", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-bg);
    color: var(--text);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

h1,
h2,
h3,
.brand-copy strong,
.site-footer .footer-brand-name {
    font-family: var(--font-heading);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.container {
    width: min(100% - 48px, 1280px);
    margin: 0 auto;
}

.page-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(31, 143, 77, .12), transparent 30%),
        linear-gradient(180deg, #f9fbf6 0%, var(--page-bg) 46%, #f7f8f4 100%);
}

.intro-splash {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    place-items: center;
    background: #000;
    opacity: 1;
    transition: opacity .4s ease;
}

.intro-splash.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.intro-splash-img {
    width: min(240px, 45vw);
    height: auto;
}

@media (prefers-reduced-motion: reduce) {
    .intro-splash {
        display: none;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 24px rgba(15, 61, 46, .1);
    border-bottom-color: transparent;
}

.header-main {
    min-height: 82px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--green-100);
    border: 1px solid #cbe6d1;
    overflow: hidden;
    flex: 0 0 auto;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.05;
}

.brand-copy strong {
    color: var(--green-900);
    font-size: 28px;
    letter-spacing: -.04em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 46px);
}

.header-nav a {
    position: relative;
    padding-bottom: 4px;
    color: #39463b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: color .2s ease;
}

.header-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--green-700);
    transition: right .25s ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
    color: var(--green-700);
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after {
    right: 0;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.login-btn,
.cart-btn,
.primary-cta,
.secondary-cta,
.search-button,
.modal-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.login-btn {
    min-height: 40px;
    padding: 0 24px;
    color: var(--green-700);
    background: #f0fdf4;
    border: 1px solid #b7e4c7;
}

.cart-btn {
    min-height: 40px;
    padding: 0 15px;
    gap: 5px;
    color: #fff;
    background: var(--green-700);
}

.cart-btn strong {
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    font-size: 12px;
}

.cart-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.search-bar-wrap {
    background: var(--green-900);
    padding: 12px 0;
}

.search-bar {
    display: grid;
    grid-template-columns: 1fr minmax(160px, 220px);
    gap: 14px;
    align-items: center;
}

.search-input-wrap {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    background: #fff;
    border-radius: 999px;
    color: var(--muted);
}

.search-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.search-input-wrap input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
    font-size: 15px;
}

.search-button {
    min-height: 46px;
    background: var(--yellow);
    color: #111827;
    box-shadow: none;
}

.search-button:hover,
.primary-cta:hover,
.secondary-cta:hover,
.login-btn:hover,
.cart-btn:hover,
.modal-cart-btn:hover {
    transform: translateY(-1px);
}

.intro-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* ocupa a tela toda abaixo do header sticky, descontando sua altura real
       (--header-height, medida ao vivo por JS em initIntroBannerHeight -
       JAC-448), para que .hero-section só apareça ao rolar. dvh cobre melhor
       a barra de endereço do mobile; vh fica como base para navegadores sem
       suporte a dvh. */
    min-height: calc(100vh - var(--header-height, 82px));
    min-height: calc(100dvh - var(--header-height, 82px));
    overflow: hidden;
    color: #fff;
}

.intro-banner-media {
    position: absolute;
    inset: 0;
    background-image: url("/img/home-banner-harvest.jpg");
    background-size: cover;
    /* centralizado verticalmente mais pro rodape da foto, onde estao os tratores/colheitadeira (JAC-408) */
    background-position: center 75%;
}

.intro-banner-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 20, 13, .35) 0%, rgba(6, 20, 13, .7) 100%);
}

.intro-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    padding: 96px 0;
}

.intro-banner-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.intro-banner-logo-wrap {
    display: grid;
    place-items: center;
    width: clamp(76px, 9vw, 128px);
    height: clamp(76px, 9vw, 128px);
    padding: 10px;
    border-radius: 28px;
}

.intro-banner-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .45));
}

.intro-banner-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(48px, 9vw, 108px);
    font-weight: 700;
    letter-spacing: -.04em;
    text-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

.intro-banner-tagline {
    margin: -6px 0 0;
    font-family: var(--font-heading);
    font-size: clamp(13px, 1.6vw, 20px);
    font-weight: 700;
    letter-spacing: .32em;
    text-transform: uppercase;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .4);
}

/* shared/theme.css tem regras globais (body[data-theme="light"] h1,h2,h3... e
   body[data-theme="light"] p,small,span{color:inherit}) com especificidade maior
   que .intro-banner-title/.intro-banner-tagline sozinhas, que deixavam o titulo
   escuro e o subtitulo branco (herdado) sobre a foto no tema claro; precisa de
   mais especificidade (JAC-408, JAC-451).
   Cores fixas em hex (nao var(--green-700)/var(--gold-700) direto): banner tem
   foto/scrim escuro fixo independente do tema do site, mas shared/home-theme.css
   redefine as vars --green-* no tema escuro (mesmo motivo do .site-footer/
   .contact-section acima - JAC-385/386); --gold-700 em si e estavel (nao e
   redefinida em home-theme.css), mas o valor e repetido aqui em hex pra manter
   o mesmo padrao de blindagem contra heranca de tema usado no restante do bloco. */
body[data-theme] .intro-banner-title {
    color: #1f8f4d;
}

body[data-theme] .intro-banner-tagline {
    color: #c9a15a;
}

.intro-banner-whatsapp-cta {
    font-size: 16px;
    padding: 14px 30px;
}

/* JAC-456: vitrines rotativas de ferramentas (esq.) e manuais (dir.) no banner,
   reaproveitando o mesmo mecanismo de rotação do card em destaque do
   hero-section (shared/home-hero-rotator.js -> createRotator). */
.intro-banner-showcase {
    width: 100%;
    max-width: 620px;
    margin-top: 8px;
    display: flex;
    gap: 18px;
}

.intro-banner-showcase-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* sem isso, [hidden] perde pra "display:flex" acima (mesma especificidade,
   cascata author > UA) e a coluna sem itens continua visivel e vazia. */
.intro-banner-showcase-col[hidden],
.intro-banner-showcase[hidden] {
    display: none;
}

.intro-banner-showcase-label {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .4);
}

.intro-banner-showcase-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .6);
    box-shadow: 0 14px 30px rgba(6, 20, 13, .35);
    text-align: left;
    cursor: pointer;
    transition: opacity .28s ease, transform .2s ease, box-shadow .2s ease;
}

.intro-banner-showcase-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(6, 20, 13, .42);
}

.intro-banner-showcase-card.is-changing {
    opacity: .45;
}

.intro-banner-showcase-thumb {
    width: 56px;
    height: 68px;
    min-width: 56px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    /* cor fixa (nao var(--green-700)): card do banner e sempre claro,
       independente do tema do site, mesmo motivo do .intro-banner-title
       acima (JAC-408/451). */
    color: #1f8f4d;
    background: #f0f7ea;
    border: 1px solid #d7e6ce;
    overflow: hidden;
}

.intro-banner-showcase-thumb.has-image {
    padding: 4px;
    background: #fff;
}

.intro-banner-showcase-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.intro-banner-showcase-thumb span {
    font-size: 12px;
    font-weight: 900;
}

.intro-banner-showcase-info {
    min-width: 0;
}

.intro-banner-showcase-info strong {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.3;
    color: #0f3d2e;
}

/* body[data-theme] .strong (shared/theme.css) e a variavel --green-900
   redefinida para quase-branco no tema escuro (shared/home-theme.css)
   fariam esse texto sumir sobre o card claro do banner; blindagem igual
   ao .intro-banner-title/.intro-banner-tagline acima (JAC-408/451). */
body[data-theme] .intro-banner-showcase-info strong {
    color: #0f3d2e;
}

/* .shine-cta agora vive em shared/ui.css (utilitario reaproveitavel pelas
   demais paginas: cliente, checkout, etc. - ver JAC-458) */

.hero-section {
    background: linear-gradient(135deg, #eaf5e0 0%, #f4f8ef 58%, #ffffff 100%);
    padding: 62px 0 34px;
    border-bottom: 1px solid #e1ead9;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 40px;
    align-items: center;
}

.hero-copy {
    min-width: 0;
}

.hero-eyebrow,
.section-kicker,
.preview-pill,
.catalog-card-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-eyebrow {
    color: var(--green-800);
    background: #fff;
    border: 1px solid #cbe6d1;
    padding: 8px 14px;
    margin-bottom: 20px;
}

.hero-copy h1 {
    margin: 0;
    max-width: 860px;
    color: var(--green-900);
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -.055em;
}

.hero-copy p {
    max-width: 780px;
    margin: 22px 0 0;
    color: #4b584f;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.5;
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-cta,
.secondary-cta {
    min-height: 52px;
    padding: 0 34px;
    font-size: 16px;
}

.primary-cta {
    color: #fff;
    background: var(--green-700);
    box-shadow: 0 12px 24px rgba(31, 143, 77, .22);
}

.secondary-cta {
    color: var(--green-700);
    background: #fff;
    border: 2px solid var(--green-700);
}

.hero-product-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 22px;
    align-items: center;
    padding: 30px;
    border-radius: 26px;
    background: rgba(255,255,255,.9);
    border: 1px solid #cad9c3;
    box-shadow: var(--shadow);
}

.hero-pdf-card {
    height: 160px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--green-700);
    background: #f0f7ea;
    border: 1px solid #d7e6ce;
}

.hero-pdf-card span {
    font-size: 44px;
    font-weight: 950;
}

.hero-product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.preview-pill {
    color: var(--green-700);
    background: #f0fdf4;
    padding: 6px 11px;
    letter-spacing: 0;
    text-transform: none;
}

.hero-product-info h2 {
    margin: 0;
    color: var(--green-900);
    font-size: 24px;
}

.hero-product-info p {
    margin: 0;
    color: #526055;
}

.hero-product-info strong {
    margin-top: 8px;
    color: #111827;
    font-size: 28px;
}

.hero-product-info a {
    width: fit-content;
    margin-top: 2px;
    padding: 10px 20px;
    color: #fff;
    background: var(--green-700);
    border-radius: 999px;
    font-weight: 800;
}

.brand-carousel-section {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 28px 0 20px;
    overflow: hidden;
    text-align: center;
}

/* Marquee: faixa mais larga que o viewport, scroll contínuo (JS duplica os chips para o loop). */
.brand-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 16px;
    padding: 4px 0;
    width: max-content;
    animation: brand-marquee 34s linear infinite;
}

.brand-carousel:hover {
    animation-play-state: paused;
}

@keyframes brand-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .brand-carousel {
        animation: none;
        flex-wrap: wrap;
        width: auto;
        justify-content: center;
        padding: 4px 16px;
    }
}

.brand-chip {
    min-height: 64px;
    min-width: 110px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.brand-chip:hover,
.brand-chip:focus-visible {
    border-color: var(--green-700);
    box-shadow: 0 4px 16px rgba(0,0,0,.10);
    transform: translateY(-3px);
    outline: none;
}

.brand-logo {
    max-height: 44px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.category-strip {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-chip {
    min-height: 38px;
    padding: 0 20px;
    color: var(--green-900);
    background: #fff;
    border: 1px solid #cbd7c0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

.category-chip.active,
.category-chip:hover {
    color: #fff;
    background: var(--green-700);
    border-color: var(--green-700);
}

.catalog-section {
    padding: 64px 0 48px;
    box-sizing: border-box;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.section-kicker {
    color: var(--green-700);
    margin-bottom: 8px;
}

.section-head h2 {
    margin: 0;
    color: var(--green-900);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -.035em;
}

.section-head p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.catalog-count {
    color: var(--muted);
    font-weight: 800;
    white-space: nowrap;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.catalog-loading {
    grid-column: 1 / -1;
    padding: 28px;
    border-radius: 20px;
    color: var(--muted);
    background: #fff;
    border: 1px dashed var(--border);
}

.catalog-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.catalog-empty p {
    margin: 0;
}

.card,
.catalog-card {
    min-height: 392px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 28px rgba(15, 61, 46, .06);
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover,
.card:focus-visible,
.catalog-card:hover,
.catalog-card:focus-visible {
    transform: translateY(-4px);
    border-color: #bad5b7;
    box-shadow: var(--shadow);
    outline: none;
}

.catalog-card-thumb {
    width: 100%;
    height: 152px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(31,143,77,.08), rgba(31,143,77,.02)),
        var(--surface-soft);
    border: 1px solid #dbe9d2;
}

.catalog-card-thumb img {
    width: 100%;
    height: 100%;
    /* .catalog-card-thumb usa place-items:center (grid), que nao estica o item por
       padrao - sem align-self/justify-self:stretch, height:100% vira "auto" (a
       imagem passa a usar o proprio aspect-ratio) e estoura a altura fixa do
       container, cortando a imagem pela metade no overflow:hidden (JAC-441).
       Alem disso, grid items tem min-height/min-width:auto implicito, que usa o
       tamanho intrinseco da imagem como piso e ignora o stretch - precisa zerar
       explicitamente pra imagem realmente encolher ate caber no container. */
    min-width: 0;
    min-height: 0;
    align-self: stretch;
    justify-self: stretch;
    object-fit: cover;
    display: block;
}

.catalog-card-thumb.placeholder span {
    color: var(--green-700);
    font-size: 38px;
    font-weight: 950;
    letter-spacing: -.04em;
}

.catalog-card-kicker {
    color: var(--green-700);
    background: #f0fdf4;
    padding: 6px 10px;
    letter-spacing: 0;
    text-transform: none;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card h3,
.catalog-card h3 {
    margin: 0;
    color: var(--green-900);
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.02em;
}

.catalog-card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.35;
}

.catalog-card-price {
    margin-top: auto;
    color: #111827;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -.04em;
}

.catalog-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    color: #fff;
    background: var(--green-700);
    border-radius: 999px;
    font-weight: 900;
}

.catalog-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* .ui-action-button define display:inline-flex, que sobrescreve o display:none
   implicito do atributo [hidden] (origem "author" sempre vence "user agent",
   independente de especificidade) - por isso precisa do override explicito. */
#catalog-load-more[hidden],
#parts-load-more[hidden] {
    display: none;
}

.parts-section {
    padding-top: 48px;
    padding-bottom: 24px;
    min-height: 0;
    background: var(--surface-soft);
}

.parts-card-kicker {
    color: #1d4ed8;
    background: #eff6ff;
}

.parts-price-consult {
    color: var(--muted);
    font-size: 17px;
    font-weight: 800;
}

.how-section {
    padding: 30px 0 80px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.how-grid article {
    padding: 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--border);
}

.how-grid span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green-700);
    border-radius: 50%;
    font-weight: 900;
}

.how-grid h3 {
    margin: 18px 0 8px;
    color: var(--green-900);
    font-size: 22px;
}

.how-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.about-section {
    padding: 64px 0;
    /* .site-header e sticky (~153px no desktop); sem isso, o link "Quem somos" do
       rodape rola a secao pra debaixo do header, cortando o titulo (mesma classe de
       bug do JAC-97, so que aqui o pre-fix e mais simples pq nao ha filtro JS). */
    scroll-margin-top: 170px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: 48px;
    align-items: center;
}

.about-media {
    display: grid;
    place-items: center;
    padding: 48px;
    border-radius: 28px;
    background: var(--surface-soft);
    border: 1px solid var(--border);
}

.about-avatar-img {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    /* transform e setado via JS (initAboutMediaHover, home.js) só quando o mouse
       está sobre .about-media; a transição aqui cobre a ida (hover) e a volta
       ao centro (mouseleave/touch), então não precisa de duas regras separadas. */
    transition: transform .25s ease-out;
    will-change: transform;
}

.about-copy h2 {
    margin: 10px 0 18px;
    color: var(--green-900);
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -.03em;
    line-height: 1.1;
}

.about-copy p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.about-draft-note {
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 13px;
    font-style: italic;
    opacity: .82;
}

.contact-section {
    padding: 64px 0;
    /* fixo (nao usa var(--green-900)): mesmo motivo do .site-footer (JAC-385) -
       home-theme.css redefine essa variavel para um tom quase branco no tema escuro,
       o que deixaria o bloco de contato claro no modo escuro */
    background: #0f3d2e;
    color: rgba(255, 255, 255, .86);
    /* mesmo motivo do .about-section acima: evita que o header sticky cubra "Contato"
       quando o link do rodape rola ate aqui */
    scroll-margin-top: 170px;
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(240px, 380px) 1fr;
    gap: 48px;
    align-items: start;
}

.contact-kicker {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 8px 14px;
}

.contact-copy h2 {
    margin: 10px 0 12px;
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -.03em;
}

.contact-copy p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    max-width: 360px;
}

/* shared/theme.css sobrescreve h2/span com a mesma especificidade no tema claro
   (color:var(--theme-text-primary), verde escuro) - deixava "Contato" invisivel
   sobre o fundo verde escuro fixo da secao; precisa de mais especificidade (JAC-408,
   mesmo problema do .intro-banner-title) */
body[data-theme] .contact-kicker {
    color: #bff2d2;
}

body[data-theme] .contact-copy h2 {
    color: #fff;
}

body[data-theme] .contact-copy p {
    color: rgba(255, 255, 255, .78);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    padding: 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .78);
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field input,
.contact-field textarea {
    min-height: 46px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .95);
    color: #0f3d2e;
    font-size: 15px;
    font-family: inherit;
}

.contact-field textarea {
    min-height: 96px;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #7a8a80;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: 2px solid var(--green-700);
    outline-offset: 1px;
}

.contact-submit {
    grid-column: 1 / -1;
    width: fit-content;
    min-height: 50px;
    padding: 0 34px;
}

.reveal {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.hero-copy .hero-eyebrow.reveal { transition-delay: 0s; }
.hero-copy h1.reveal { transition-delay: .1s; }
.hero-copy p.reveal { transition-delay: .2s; }
.hero-copy .hero-actions.reveal { transition-delay: .3s; }
.hero-product-card.reveal { transition-delay: .15s; }

.catalog-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.catalog-modal.is-open {
    display: block;
}

.catalog-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(3, 16, 11, .72);
    backdrop-filter: blur(8px);
}

.catalog-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100% - 28px, 1120px);
    margin: 4vh auto;
    max-height: 92vh;
    overflow: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0,0,0,.28);
    padding: 18px;
}

.catalog-modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--green-900);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.catalog-modal-content {
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(280px, 1.05fr);
    gap: 28px;
    align-items: center;
}

.catalog-modal-preview-column,
.catalog-modal-preview {
    min-width: 0;
}

.catalog-modal-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: clamp(14px, 3vw, 34px);
    border-left: 1px solid var(--border);
}

.catalog-modal-info h2 {
    margin: 0;
    color: var(--green-900);
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.03;
    letter-spacing: -.04em;
    overflow-wrap: anywhere;
}

.catalog-modal-author,
.catalog-modal-desc,
.catalog-modal-meta {
    color: var(--muted);
}

.catalog-modal-author[hidden],
.catalog-modal-desc[hidden],
.catalog-modal-meta[hidden] {
    display: none;
}

.catalog-modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-modal-meta span {
    border: 1px solid var(--border);
    background: #f8faf6;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 800;
}

.catalog-modal-desc {
    margin: 0;
    line-height: 1.55;
}

.home-about-dialog {
    width: min(100% - 32px, 640px);
    max-width: 640px;
}

.home-about-info {
    border-left: none;
}

.home-about-info p {
    margin: 0;
    line-height: 1.6;
    color: var(--muted);
}

.modal-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.modal-price-row strong {
    color: #111827;
    font-size: 34px;
}

.modal-cart-btn {
    min-height: 48px;
    padding: 0 24px;
    color: #fff;
    background: var(--green-700);
}

.checkout-note {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.catalog-cover {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.catalog-cover img,
.catalog-preview-slide img {
    max-height: 58vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

.catalog-preview-carousel {
    display: grid;
    gap: 10px;
}

.catalog-preview-carousel-body {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 10px;
}

.catalog-preview-viewport {
    overflow: hidden;
    min-width: 0;
    border-radius: 18px;
}

.catalog-preview-track {
    display: flex;
    transition: transform .24s ease;
    /* permite scroll vertical da pagina passar, mas reserva o gesto horizontal
       pro JS do carrossel em vez de disputar com o navegador (JAC-441) */
    touch-action: pan-y;
}

.catalog-preview-slide {
    flex: 0 0 100%;
    margin: 0;
    display: grid;
    gap: 8px;
    justify-items: center;
    background: #f8faf6;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px;
}

.catalog-preview-slide figcaption,
.catalog-preview-counter {
    color: var(--muted);
    font-size: 13px;
}

.catalog-preview-nav {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--green-900);
    cursor: pointer;
    font-size: 28px;
}

.catalog-preview-nav:disabled {
    opacity: .35;
    cursor: not-allowed;
}

.catalog-preview-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 0 54px;
}

.catalog-preview-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-preview-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background: #ccd8c5;
    cursor: pointer;
}

.catalog-preview-dot.is-active {
    background: var(--green-700);
}

.catalog-modal-loading,
.catalog-modal-empty {
    padding: 24px;
    border-radius: 18px;
    background: #f8faf6;
    border: 1px dashed var(--border);
    color: var(--muted);
    text-align: center;
}

@media (max-width: 1120px) {
    .header-main {
        grid-template-columns: 1fr auto;
    }

    .header-nav {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-product-card {
        max-width: 560px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-media {
        padding: 32px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-copy p {
        max-width: none;
    }

    .catalog-modal-content {
        grid-template-columns: 1fr;
    }

    .catalog-modal-info {
        border-left: 0;
        border-top: 1px solid var(--border);
        padding: 22px 4px 6px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1280px);
    }

    .intro-banner {
        /* fallback maior pois o header mobile fica mais alto (busca quebra em 2 linhas) */
        min-height: calc(100vh - var(--header-height, 210px));
        min-height: calc(100dvh - var(--header-height, 210px));
    }

    .intro-banner-inner {
        padding: 80px 0;
        gap: 22px;
    }

    .intro-banner-showcase {
        flex-direction: column;
        max-width: 320px;
        gap: 12px;
    }

    .about-media {
        padding: 24px;
    }

    .about-section,
    .contact-section {
        /* header sticky fica mais alto no mobile (busca quebra em 2 linhas) */
        scroll-margin-top: 210px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .contact-submit {
        width: 100%;
    }

    .header-main {
        min-height: 74px;
        gap: 12px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .brand-copy strong {
        /* Orbitron é mais larga que a Inter; reduzido para não invadir os botões do header no mobile */
        font-size: 13px;
    }

    .brand-copy small {
        display: none;
    }

    .login-btn {
        display: none;
    }

    .cart-btn {
        min-height: 36px;
        padding: 0 12px;
        font-size: 13px;
    }

    .search-bar {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-section {
        padding: 42px 0 28px;
    }

    .hero-copy h1 {
        font-size: clamp(36px, 12vw, 52px);
        line-height: 1.02;
    }

    .hero-actions,
    .modal-price-row {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-cta,
    .secondary-cta,
    .modal-cart-btn {
        width: 100%;
    }

    .hero-product-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .hero-pdf-card {
        height: 120px;
    }

    .category-list {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .category-chip,
    .brand-chip {
        flex: 0 0 auto;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card {
        min-height: 360px;
    }

    .catalog-modal-dialog {
        width: min(100% - 14px, 1100px);
        padding: 14px;
        margin: 12px auto;
    }

    .catalog-preview-carousel-body {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 8px;
    }

    .catalog-preview-nav {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .catalog-preview-footer {
        padding: 0 44px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-whatsapp-cta {
        width: 100%;
        justify-content: center;
    }

    .footer-payments-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* .footer-bottom na frente (nao so .site-footer-inner) pra ganhar em
       especificidade das regras base do rodape, que no arquivo aparecem
       DEPOIS deste media query (mesma especificidade + ordem de fonte
       fariam a base vencer mesmo em mobile, JAC-499). align-items:stretch
       (nao center) + texto centralizado por dentro: itens shrink-to-fit
       centralizados nao quebram linha e ficam atras do .whatsapp-float fixo
       no canto inferior direito; esticando e permitindo wrap o texto quebra
       antes de invadir aquela área, como o rodape ja fazia antes do JAC-499. */
    .footer-bottom .site-footer-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .footer-bottom .site-footer-credit {
        justify-content: center;
    }

    .footer-bottom .site-footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    /* Em telas muito estreitas o .header-actions (botao de tema + carrinho) nao
       cabe ao lado do nome da marca mesmo com .brand encolhido ao minimo - o grid
       quebra em 2 linhas em vez de deixar o texto "TecAgri" vazar sobre os botoes
       (JAC-414). */
    .header-main {
        grid-template-columns: 1fr;
        row-gap: 8px;
        min-height: 0;
        padding: 10px 0;
    }

    .header-actions {
        justify-content: flex-end;
    }
}

.site-footer {
    margin-top: 56px;
    border-top: 1px solid var(--border);
    /* fixo (nao usa var(--green-900)): shared/home-theme.css redefine essa variavel
       para um tom claro no tema escuro (uso para texto), o que deixava o fundo do
       footer claro quando o usuario ativa o modo escuro da home (JAC-385) */
    background: #0f3d2e;
    color: rgba(255, 255, 255, .82);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 44px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    padding: 4px;
}

.site-footer .footer-brand-name {
    font-weight: 900;
    font-size: 22px;
    color: #fff;
    letter-spacing: -.02em;
}

.site-footer .footer-brand-tagline {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .68);
    max-width: 380px;
}

.footer-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(15, 61, 46, .32);
    transition: transform .2s ease, box-shadow .2s ease;
}

.footer-whatsapp-cta svg {
    width: 20px;
    height: 20px;
}

.footer-whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(15, 61, 46, .4);
}

.footer-columns {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 220px));
    gap: 32px 56px;
}

.site-footer .footer-col-title {
    display: block;
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, .82);
    transition: color .2s ease;
}

.footer-col-links a:hover {
    color: #fff;
}

.footer-payments {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-payments-inner {
    padding: 26px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px 26px;
}

.footer-payments-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    white-space: nowrap;
}

.footer-payments-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, .82);
}

.footer-payment-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-payment-badge--pix svg {
    color: #32bcad;
}

.footer-payment-badge--visa svg {
    color: #6f8dff;
}

.footer-payment-badge--mastercard svg {
    color: #ff9f4a;
}

.footer-payment-badge--elo svg {
    color: #ffd351;
}

.footer-payment-badge--amex svg {
    color: #5aa9e6;
}

.footer-bottom {
    padding: 24px 0;
}

.site-footer-inner {
    /* credito e links ficam com largura de conteudo (flex:0 0 auto) nas pontas;
       a copy no meio cresce pra ocupar o espaço restante (flex:1 1 auto) e se
       centraliza dentro dele via text-align — fica visualmente centralizada no
       bloco sem forçar as colunas das pontas a encolher abaixo do proprio
       conteudo (o que quebrava "Política de Privacidade"/"Termos de Uso" em
       2 linhas numa tentativa anterior com CSS grid + colunas 1fr, JAC-499).
       padding-right aqui (nao so no .site-footer-links): index.html nao tem
       nav de links no rodape, entao so ela reserva espaço contra o
       .whatsapp-float fixo pras 3 páginas por igual. */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding-right: 92px;
}

.site-footer-credit {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.25;
    transition: color .2s ease;
}

.site-footer-credit:hover,
.site-footer-credit:focus-visible {
    color: #fff;
}

.site-footer-credit-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(255, 255, 255, .12);
    padding: 3px;
}

/* span (nao strong/h1-h6/label): shared/theme.css forca essas tags para
   var(--theme-text-primary) no tema claro, cor escura que some no fundo
   fixo verde-escuro do rodape (mesmo motivo de .footer-brand-name/.footer-col-title
   usarem span acima, JAC-499) */
.site-footer-credit-name {
    font-weight: 700;
    color: inherit;
}

.site-footer .site-footer-copy {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .68);
    text-align: center;
}

.site-footer-links {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
}

.site-footer-links a {
    color: rgba(255, 255, 255, .82);
    transition: color .2s ease;
}

.site-footer-links a:hover {
    color: #fff;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 28px rgba(15, 61, 46, .32);
    transition: transform .2s ease, box-shadow .2s ease;
}

/* .shine-cta (shared/ui.css) forca position:relative pro sweep animado;
   sem essa regra de maior especificidade o botao flutuante perderia o
   position:fixed e passaria a rolar com a pagina (JAC-458). */
.whatsapp-float.shine-cta {
    position: fixed;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 16px 34px rgba(15, 61, 46, .4);
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 950;
    /* fixo (nao usa var(--green-900)): mesmo motivo do .site-footer (JAC-385) -
       shared/home-theme.css redefine essa variavel para um tom claro no tema
       escuro, o que deixava o fundo do banner claro em vez de escuro (JAC-386) */
    background: #0f3d2e;
    color: rgba(255, 255, 255, .92);
    box-shadow: 0 -10px 30px rgba(15, 61, 46, .25);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-inner {
    width: min(100% - 48px, 1280px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.cookie-banner-inner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 320px;
}

.cookie-banner-inner .ui-action-button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 22px;
}

@media (max-width: 480px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-inner p {
        flex-basis: auto;
    }

    .cookie-banner-inner .ui-action-button {
        width: 100%;
    }
}

/* JAC-455: popup periodico de prova social (compra recente simulada).
   bottom-left para nao disputar canto com .whatsapp-float (bottom-right, z-index 900)
   nem com .cookie-banner (full-width, z-index 950) quando ambos aparecem juntos. */
.social-proof-toast {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 850;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 320px;
    padding: 12px 16px 12px 12px;
    border-radius: 16px;
    background: #0f3d2e;
    color: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 40px rgba(15, 61, 46, .32);
    border: 1px solid rgba(201, 161, 90, .35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity .35s ease, transform .35s ease;
}

.social-proof-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.social-proof-avatar {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

.social-proof-avatar svg,
.social-proof-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-proof-bubble {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    line-height: 1.4;
    padding-top: 2px;
}

.social-proof-name {
    color: var(--gold-700);
    font-weight: 700;
}

.social-proof-text {
    color: rgba(255, 255, 255, .85);
}

@media (max-width: 640px) {
    /* empilha acima do botao de WhatsApp em vez de disputar espaco ao lado dele,
       ja que a largura reduzida nao comporta os dois lado a lado com folga;
       84px e o minimo que ja limpa o botao fixo (24 bottom + 58 altura) */
    .social-proof-toast {
        left: 12px;
        right: 12px;
        bottom: 84px;
        max-width: none;
    }
}
