.hero {
    margin-top: 100px;
    position: relative;
    width: 100%;
    height: 90vh;

    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.38) 20%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 90%),
        url('../img/euro-owner.png');

    background-repeat: no-repeat;
    background-size: cover;
    /* cobre a tela toda */
    background-position: right top;
    /* controla a posição */
}

/* TEXTO POSICIONADO SOBRE A MERCEDES */
.hero-content {
    position: absolute;
    top: 50%;
    right: 8%;
    /* 👈 controla o quanto vai pra direita */
    transform: translateY(-50%);
    max-width: 600px;
    text-align: right;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    margin-top: 25px;
    font-size: 18px;
    color: #ccc;
}

.btn-main {
    display: inline-block;
    margin-top: 35px;
    padding: 18px 40px;
    border-radius: 50px;
    background: linear-gradient(90deg, #1fae4b, #0c7c2c);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
    transition: 0.3s;
}

.btn-main:hover {
    transform: scale(1.05);
}


.gold {
    color: #f5b400;
}

/* ================= DIVIDER ================= */

.divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, #f5b400, transparent);
}

/* ================= RESPONSIVO ================= */

@media(max-width: 992px) {

    .hero {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 350px;
        background-position: center left;
        background-size: cover;
        padding: 80px 20px;
        margin-top: 100px;
    }

    .hero-content {
        position: absolute;
        top: auto;
        /* cancela o top */
        right: auto;
        /* cancela o right */
        left: 50%;

        bottom: 30px;
        /* altura do texto */
        transform: translateX(-50%);

        text-align: center;
        width: 100%;
    }

    .hero h1 {
        font-size: 20px;
        word-break: normal;
        overflow-wrap: normal;
    }


    .hero p {
        font-size: 10px;
        margin-top: 0px;
    }

    .btn-main {
        font-size: 0.8rem;
        padding: 10px;
    }
}