/* Hero */
.hero {
    padding: 24px 0 28px;
    background: linear-gradient(160deg, #e6f4ec 0%, #f0f7f1 50%, #f8fbf8 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(76,175,114,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -40px; left: 30%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(44,95,62,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* D3.4: Hero messaging — 3 diferenciais */
.hero-diferenciais {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
    background: var(--verde-fundo);
    border-radius: var(--borda-md);
    border: 1px solid rgba(44,95,62,0.08);
    padding: 12px 16px;
    flex-wrap: wrap;
}

.hero-dif-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--texto-secundario);
    flex: 1;
    min-width: 140px;
}
.hero-dif-item strong { color: var(--texto-primario); font-weight: 700; }
.hero-dif-icone {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--verde-suave);
    color: var(--verde-escuro);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hero-dif-sep {
    width: 1px;
    height: 32px;
    background: rgba(44,95,62,0.1);
    margin: 0 16px;
    flex-shrink: 0;
}

/* Compat — manter .hero-trust caso exista em outro lugar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.hero-trust span {
    font-size: 0.8125rem;
    color: var(--texto-secundario);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: var(--verde-escuro);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1.5px solid rgba(44,95,62,0.15);
    box-shadow: 0 1px 4px rgba(44,95,62,0.1);
    letter-spacing: 0.01em;
}

/* D2: Playfair Display restrita ao H1 hero — editorial premium */
.hero h1 {
    font-family: var(--fonte-editorial, 'Playfair Display', serif);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}
.hero h1 .destaque { color: var(--verde-escuro); }
.hero-conteudo p { margin-bottom: 20px; max-width: 460px; font-size: 1.0625rem; line-height: 1.7; }

.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(44,95,62,0.12);
}

.stat { display: flex; flex-direction: column; gap: 2px; }
.stat strong { font-size: 1.375rem; font-weight: 700; color: var(--verde-escuro); letter-spacing: -0.03em; }
.stat span { font-size: 0.75rem; color: var(--texto-auxiliar); font-weight: 500; }
.stat-divider { width: 1px; height: 28px; background: rgba(44,95,62,0.12); }

/* ── Hero Visual (painel direito) ── */
.hero-visual {
    background: white;
    border-radius: var(--borda-xl);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 24px rgba(44,95,62,0.10), 0 1px 4px rgba(44,95,62,0.06);
    border: 1px solid rgba(44,95,62,0.08);
    position: relative;
    z-index: 1;
}

/* Header do painel */
.hero-painel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-painel-badge {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--verde-escuro);
    background: var(--verde-suave);
    padding: 4px 12px;
    border-radius: var(--borda-pill);
}
.hero-painel-dots { display: flex; gap: 6px; }
.hero-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: #D0D0CC;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.hero-dot.ativo { background: var(--verde-escuro); transform: scale(1.2); }

/* Slides */
.hero-slides { position: relative; min-height: 180px; }
.hero-slide {
    display: none;
    gap: 16px;
    align-items: center;
}
.hero-slide.ativo { display: flex; }

.hero-produto-img {
    width: 140px;
    height: 140px;
    border-radius: var(--borda-md);
    background: #f7f7f5;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border: 1px solid rgba(44,95,62,0.07);
}
.hero-produto-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-produto-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, #f0f7f2, #e8f5ee);
}
.hero-produto-kp-badge {
    position: absolute;
    bottom: 6px; left: 6px;
    background: var(--verde-escuro);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
}

.hero-produto-info { flex: 1; }
.hero-produto-nome {
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto-primario);
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
}
.hero-produto-preco {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--verde-escuro);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.hero-produto-btn { align-self: flex-start; }

/* Linha de impacto */
.hero-impacto-row {
    display: flex;
    align-items: center;
    background: var(--verde-fundo);
    border-radius: var(--borda-md);
    padding: 12px 16px;
    gap: 0;
    border: 1px solid rgba(44,95,62,0.07);
}
.hero-impacto-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-impacto-item span { font-size: 1.25rem; flex-shrink: 0; }
.hero-impacto-item strong { font-size: 0.9375rem; font-weight: 700; color: var(--verde-escuro); display: block; letter-spacing: -0.02em; }
.hero-impacto-item small { font-size: 0.6875rem; color: var(--texto-auxiliar); font-weight: 500; }
.hero-impacto-sep { width: 1px; height: 32px; background: rgba(44,95,62,0.1); margin: 0 12px; flex-shrink: 0; }

/* Carrossel de eventos hero (TECH-16) */
.hero-ev-carousel-wrap {
    margin-top: 12px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(44,95,62,0.1);
    border-radius: var(--borda-md);
    padding: 12px 12px 10px;
    backdrop-filter: blur(6px);
    overflow: hidden;
}
.hero-ev-carousel-hdr {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 10px;
}
.hero-ev-titulo { font-size: .72rem; font-weight: 700; color: var(--verde-escuro); }
.hero-ev-ver { font-size: .7rem; color: var(--verde-medio); font-weight: 600; text-decoration: none; }
.hero-ev-ver:hover { text-decoration: underline; }

.hero-ev-swiper { overflow: hidden; }
.hero-ev-swiper .swiper-slide { width: 160px !important; }

.hero-ev-card {
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    border-radius: 10px; overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
    transition: transform .22s ease, box-shadow .22s ease;
}
.hero-ev-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.12); }

.hero-ev-media {
    position: relative;
    width: 100%; aspect-ratio: 16/9;
    background: linear-gradient(145deg, #0f2d1a, #2C5F3E);
    overflow: hidden;
    flex-shrink: 0;
}
.hero-ev-media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.hero-ev-media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.5) 100%);
}
.hero-ev-placeholder {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0;
}
.hero-ev-ph-dia { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-ev-ph-mes { font-size: .6rem; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: .1em; text-transform: uppercase; }
.hero-ev-badge {
    position: absolute; top: 5px; left: 5px; z-index: 2;
    font-size: .65rem; background: rgba(201,168,76,.95); color: #1a1a1a;
    padding: 2px 7px; border-radius: 20px; font-weight: 700;
}
.hero-ev-free {
    position: absolute; top: 5px; right: 5px; z-index: 2;
    font-size: .62rem; background: rgba(76,175,114,.92); color: #fff;
    padding: 2px 7px; border-radius: 20px; font-weight: 700;
}

.hero-ev-info {
    padding: 8px 9px 9px;
    display: flex; flex-direction: column; gap: 2px;
}
.hero-ev-date { font-size: .62rem; font-weight: 700; color: #4CAF72; text-transform: uppercase; letter-spacing: .04em; }
.hero-ev-nome { font-size: .75rem; font-weight: 600; color: #111; line-height: 1.3; }
.hero-ev-local { font-size: .65rem; color: #999; }

.impact-card {
    background: white;
    border-radius: var(--borda-md);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(44,95,62,0.08), 0 1px 2px rgba(44,95,62,0.04);
    border: 1px solid rgba(255,255,255,0.9);
    transition: box-shadow 0.2s;
}
.impact-card:hover { box-shadow: var(--sombra-md); }

.impact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--verde-suave), #c8ecd0);
    border-radius: var(--borda-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(44,95,62,0.12);
}

.impact-info { flex: 1; }
.impact-label { font-size: 0.75rem; color: var(--texto-auxiliar); display: block; }
.impact-valor { font-size: 1.375rem; font-weight: 700; color: var(--verde-escuro); }

.kp-card {
    background: linear-gradient(135deg, #1e4a2e, var(--verde-escuro));
    border-radius: var(--borda-md);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(44,95,62,0.25);
}

.kp-card p { color: rgba(255,255,255,0.6); font-size: 0.75rem; margin: 0; }
.kp-card strong { color: #4CAF72; font-size: 1.375rem; font-weight: 700; display: block; letter-spacing: -0.02em; }

/* ── D7: Timeline "Como funciona" — linha conectora + ícones SVG ── */
.como-funciona {
    background: white;
    border-top: 1px solid rgba(44,95,62,0.06);
    border-bottom: 1px solid rgba(44,95,62,0.06);
}

.como-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

/* Linha conectora horizontal */
.como-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(50% / 3 + 16.66%);
    right: calc(50% / 3 + 16.66%);
    height: 2px;
    background: linear-gradient(90deg, var(--verde-medio), var(--verde-claro), var(--verde-medio));
    pointer-events: none;
    z-index: 0;
}

.como-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px 40px;
    position: relative;
    z-index: 1;
}

.como-icone-wrap {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--verde-claro);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(44,95,62,0.12);
    flex-shrink: 0;
    transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
    position: relative;
}
.como-icone-wrap svg { color: var(--verde-escuro); }
.como-item:hover .como-icone-wrap {
    border-color: var(--verde-medio);
    box-shadow: 0 6px 24px rgba(44,95,62,0.2);
    transform: translateY(-4px);
}

.como-step-num {
    position: absolute;
    top: -6px; right: -6px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--verde-escuro);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}

.como-item h3 {
    color: var(--verde-escuro);
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 700;
}
.como-item p  { font-size: 0.875rem; line-height: 1.65; max-width: 220px; }
.como-seta { display: none; }

/* Produtos */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.produto-img {
    height: 180px;
    background: #f7f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}
.produto-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.card:hover .produto-img img { transform: scale(1.04); }
.produto-codigo { font-size: 0.6875rem; color: var(--texto-auxiliar); margin-bottom: 4px; letter-spacing: 0.04em; text-transform: uppercase; }
.produto-nome { font-size: 0.9375rem; font-weight: 600; color: var(--texto-primario); margin-bottom: 8px; line-height: 1.35; letter-spacing: -0.01em; }
.produto-preco { font-size: 1.25rem; font-weight: 700; color: var(--texto-primario); letter-spacing: -0.02em; }
.produto-pix { font-size: 0.75rem; color: var(--verde-medio); font-weight: 500; margin-bottom: 16px; }
.produto-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(44,95,62,0.06); margin-top: 4px; }

/* ── D6: Seção de impacto com anéis SVG + counter animado ── */
.impacto-section {
    background: var(--verde-floresta, #1B4332);
    position: relative;
    overflow: hidden;
}
.impacto-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -80px;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(76,175,114,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.impacto-section .text-center h2 {
    font-family: var(--fonte-editorial, 'Playfair Display', serif);
    font-weight: 700;
    color: white;
}
.impacto-section .text-center p { color: rgba(255,255,255,0.65); }

/* Grid de anéis */
.impacto-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

/* Anel SVG circular */
.impacto-anel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.impacto-svg-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.impacto-svg-wrap svg {
    transform: rotate(-90deg);
    overflow: visible;
}

.impacto-svg-bg {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 8;
}

.impacto-svg-ring {
    fill: none;
    stroke: var(--verde-medio, #4CAF72);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 345;
    stroke-dashoffset: 345;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.impacto-svg-ring.animado {
    stroke-dashoffset: 0;
}

/* Ícone + número central */
.impacto-svg-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.impacto-svg-icone { font-size: 1.5rem; line-height: 1; }
.impacto-svg-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
}

.impacto-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    line-height: 1.4;
}
.impacto-sublabel {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}

/* CTA */
.cta-box {
    background: linear-gradient(135deg, #1e4a2e 0%, var(--verde-escuro) 50%, #3a7a50 100%);
    border-radius: var(--borda-xl);
    padding: 72px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}
.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -40px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box h2 { color: white; margin-bottom: 16px; font-size: 2rem; }
.cta-box p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 1.0625rem; }
.cta-box .hero-btns { justify-content: center; position: relative; z-index: 1; }

/* Responsivo */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-inner { gap: 36px; }
}

@media (max-width: 1024px) {
    .impacto-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .impacto-svg-wrap { width: 120px; height: 120px; }
    .impacto-svg-num { font-size: 1.125rem; }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 2.25rem; }
    .produtos-grid { grid-template-columns: repeat(2, 1fr); }
    .como-grid { grid-template-columns: 1fr; gap: 0; }
    .como-grid::before { display: none; }
    .como-item { flex-direction: row; text-align: left; align-items: flex-start; padding: 24px 20px; border-bottom: 1px solid rgba(44,95,62,0.07); }
    .como-item:last-child { border-bottom: none; }
    .como-icone-wrap { width: 56px; height: 56px; flex-shrink: 0; margin-bottom: 0; margin-right: 16px; }
    .como-item p { max-width: none; }
    .como-seta { display: none; }
}

@media (max-width: 600px) {
    .hero { padding: 40px 0 48px; }
    .hero h1 { font-size: 1.875rem; }
    .hero-trust { gap: 10px; }
    .hero-trust span { font-size: 0.75rem; }
    .produtos-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .cta-box { padding: 36px 24px; }
    .cta-box h2 { font-size: 1.5rem; }
    .produto-img { height: 140px; }
    .produto-nome { font-size: 0.875rem; }
    .produto-preco { font-size: 1.125rem; }
    .card-body { padding: 12px; }
    .impacto-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .impacto-svg-wrap { width: 110px; height: 110px; }
}

@media (max-width: 360px) {
    .produtos-grid { grid-template-columns: 1fr; }
    .impacto-grid { grid-template-columns: 1fr 1fr; }
}

/* Badges de produto */
.produto-img-link {
    position: relative;
    display: block;
}

.produto-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-promo {
    background: #FF6B35;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.badge-desconto {
    background: var(--verde-escuro);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.produto-preco-original {
    font-size: 0.875rem;
    color: var(--texto-auxiliar);
    text-decoration: line-through;
    margin-bottom: 2px;
}

/* ── M10 — Categorias visuais ────────────── */
.home-categorias-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.home-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 8px 16px;
    background: white;
    border-radius: var(--borda-lg);
    border: 1px solid rgba(44,95,62,0.07);
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    text-align: center;
    box-shadow: 0 1px 3px rgba(44,95,62,0.05);
}
.home-cat-card:hover {
    border-color: rgba(44,95,62,0.2);
    box-shadow: var(--sombra-ring), var(--sombra-sm);
    transform: translateY(-3px);
}
.home-cat-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--verde-fundo);
    border: 1.5px solid rgba(44,95,62,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--verde-escuro);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.home-cat-card:hover .home-cat-icon-wrap {
    background: var(--verde-suave);
    border-color: var(--verde-claro);
    transform: scale(1.08);
}
.home-cat-icon { font-size: 1.625rem; line-height: 1; }
.home-cat-nome { font-size: 0.8125rem; font-weight: 600; color: var(--texto-primario); line-height: 1.3; }
.home-cat-qtd  { font-size: 0.6875rem; color: var(--texto-auxiliar); font-weight: 500; }

/* ── M11 — Social proof faixa ─────────────── */
.home-social-proof {
    background: var(--verde-escuro);
    padding: 18px 0;
}
.home-sp-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 32px; flex-wrap: wrap;
}
.home-sp-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.9); font-size: 0.875rem;
}
.home-sp-item strong { color: white; font-weight: 700; }
.home-sp-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.25); }

/* ── M12 — Urgência estoque ────────────────── */
.estoque-urgente {
    font-size: 0.9rem; font-weight: 700;
    color: #D32F2F; background: #FFF3F3;
    border: 1px solid #FFCDD2; border-radius: 8px;
    padding: 6px 12px; display: inline-block;
}
.estoque-baixo {
    font-size: 0.9rem; font-weight: 600;
    color: #E65100; background: #FFF8F0;
    border: 1px solid #FFE0B2; border-radius: 8px;
    padding: 6px 12px; display: inline-block;
}

/* ── Responsivo M10 ────────────────────────── */
@media (max-width: 900px) {
    .home-categorias-grid { grid-template-columns: repeat(3, 1fr); }
    .home-sp-divider { display: none; }
    .home-sp-inner { gap: 16px; }
}
@media (max-width: 600px) {
    .home-categorias-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .home-cat-card { padding: 12px 6px; }
    .home-cat-icon { font-size: 1.5rem; }
    .home-cat-nome { font-size: 0.7rem; }
}
