.contato {
    position: relative;
    padding: 140px 8%;
    background-image: url("../images/contato.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.contato-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    text-align: right;
}

.contato-container h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.contato-subtitle {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-contato {
    display: inline-block;
    padding: 18px 40px;
    background-color: #E26D28;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-contato:hover {
    background-color: #D95829;
    transform: translateY(-3px);
}

.contato-observacao {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #9e9e9e;
}

@media (max-width: 768px) {

    .contato {
        min-height: 100vh;
        padding: 120px 6%;

        background-image: url("../images/contato-mobile.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .contato::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.85) 100%
        );
        z-index: 0;
    }

    .contato-container {
        position: relative;
        z-index: 1;
        margin-left: 0;
        max-width: 90%;
        text-align: center;
    }

    .contato h2 {
        font-size: 2.2rem;
    }

    .contato-subtitle {
        font-size: 1.15rem;
        line-height: 1.6;
    }

    .cta-contato {
        margin-top: 30px;
    }
}