.hero-section {
    background: url("https://images.unsplash.com/photo-1718777585967-5866843e0c7a?q=80&w=735&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat;
    background-size: cover;
    background-position: center 80%;
    height: 500px;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10rem;
}

.hero-content {
    color: #ffffff;
    max-width: 360px;
    text-align: center;
}

/* Título */
.hero-content .hero-title {
    font-size: 1.87rem;
    margin-bottom: 10px;
    font-weight: 400;
}

/* Subtítulo */
.hero-content .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 3px;
}

/* Botões */
.hero-buttons a {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid white;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin: 5px;
    transition: 0.3s;
}

.hero-buttons a:hover {
    background: white;
    color: black;
}

/* ===================== */
/* RESPONSIVO (MOBILE)   */
/* ===================== */

@media (max-width: 768px) {

    .hero-section {
        height: 660px;
        background-image: url(../../images/banners/photo-sneaker.avif);
    }

    .hero-overlay {
        justify-content: center;
        padding-right: 1rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content .hero-title {
        font-size: 1.25rem;
    }

    .hero-content .hero-subtitle {
        font-size: 0.875rem;
        line-height: 20px;
        letter-spacing: 1px;
    }

    .hero-buttons a {
        padding: 6px 16px;
        font-size: 10px;
    }
}