.hero {
    height: 100vh;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

/* IMAGEM / VÍDEO DO HERO */
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* OVERLAY ESCURO */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.6)
    );
    z-index: 1;
}

/* CONTEÚDO DO HERO (TEXTO + BOTÃO) */
.hero-content {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

/* BOTÃO HERO */
.hero-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 14px 36px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: #fff;
    color: #000;
}

/* ================= SEÇÕES ================= */

.section-padding {
    padding: 100px 0;
}

/* ================= GRID PRODUTOS ================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

/* ================= CARD PRODUTO ================= */

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--color-gray-light);
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
