.home-hero-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 22px 0 0;
}

.home-hero-shell {
    width: 100%;
    max-width: 100%;
    padding: 0 18px;
}

.home-hero-shell .hero-slider {
    border-radius: 0;
}

.home-hero-shell .hero-slide {
    border-radius: 26px;
    overflow: hidden;
    min-height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.home-hero-shell .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.48) 34%, rgba(0,0,0,0.12) 70%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
}

.home-hero-shell .hero-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.home-hero-shell .container {
    max-width: 1280px;
}

.home-hero-shell .hero-kicker {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.home-hero-shell .hero h1,
.home-hero-shell .hero-slide h1 {
    max-width: 560px;
    font-size: 62px;
    line-height: 0.98;
    margin-bottom: 18px;
}

.home-hero-shell .hero-text {
    max-width: 520px;
    font-size: 19px;
    line-height: 1.6;
    margin: 0 0 28px;
}

.home-hero-shell .hero-actions {
    justify-content: flex-start;
}

.home-section {
    padding: 54px 0 18px;
}

.home-section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.home-section-title h2 {
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #111;
}

.home-section-title p {
    color: #666;
    font-size: 16px;
}

.home-btn-catalogo {
    min-width: 160px;
}

.home-produtos-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home-produto-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.28s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.home-produto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(199, 164, 65, 0.45);
}

.home-produto-link {
    color: inherit !important;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.home-produto-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #f2f2f2, #e8e8e8);
    overflow: hidden;
}

.home-produto-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.home-produto-card:hover .home-produto-media img {
    transform: scale(1.03);
}

.home-produto-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(17,17,17,0.88);
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 10px;
    border-radius: 999px;
    z-index: 2;
}

.home-produto-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.home-produto-categoria {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8a8a8a;
}

.home-produto-titulo {
    font-size: 20px;
    line-height: 1.2;
    color: #111;
    min-height: 48px;
}

.home-produto-descricao {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    min-height: 44px;
}

.home-produto-precos {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
}

.home-produto-preco-antigo {
    color: #9b9b9b;
    font-size: 14px;
    text-decoration: line-through;
}

.home-produto-preco {
    color: #111;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.home-produto-preco-pix {
    color: #2f6f46;
    font-size: 13px;
    font-weight: 600;
}

.home-produto-footer {
    padding: 0 18px 18px;
}

.home-produto-footer .btn {
    width: 100%;
    border-radius: 14px;
}

.home-empty-box {
    border: 1px dashed #d6d6d6;
    border-radius: 22px;
    background: #fff;
    padding: 40px 24px;
    text-align: center;
    color: #666;
}

@media (max-width: 1200px) {
    .home-produtos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-hero-shell .hero-slide h1 {
        font-size: 52px;
    }
}

@media (max-width: 860px) {
    .home-produtos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero-full {
        padding-top: 16px;
    }

    .home-hero-shell {
        padding: 0 12px;
    }

    .home-hero-shell .hero-slide {
        min-height: 420px;
        border-radius: 22px;
    }

    .home-hero-shell .hero-slide h1 {
        font-size: 40px;
        max-width: 420px;
    }

    .home-hero-shell .hero-text {
        font-size: 16px;
        max-width: 420px;
    }
}

@media (max-width: 600px) {
    .home-produtos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-section {
        padding-top: 38px;
    }

    .home-section-header {
        align-items: flex-start;
    }

    .home-hero-shell .hero-slide {
        min-height: 360px;
        border-radius: 18px;
    }

    .home-hero-shell .hero-slide h1 {
        font-size: 34px;
        max-width: 310px;
    }

    .home-hero-shell .hero-text {
        font-size: 15px;
        max-width: 300px;
    }

    .home-section-title h2 {
        font-size: 24px;
    }

    .home-btn-catalogo {
        width: 100%;
    }
}