/* ==========================================================================
   AREA 7 - CONFIGURAÇÕES GLOBAIS
   ========================================================================== */
.area-7 {
    width: 100%;
    font-family: 'Raleway', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bloco7-texto h2 span {
    color: #F2E41D;
    font-weight: 900;
}

.btn-roxo {
    display: inline-block;
    background: linear-gradient(180deg, #9d39e3 0%, #6a1bb0 100%);
    color: #fff;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 900;
    text-align: center;
    border: 1px solid #c175ff;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
    transition: transform 0.3s ease;
}

/* ==========================================================================
   AREA 7 - DESKTOP (Min-width: 1025px)
   ========================================================================== */
@media screen and (min-width: 1025px) {
    .area-7 {
        background: #000 url('Imagens/Area7/bg_area7.png') center center no-repeat !important;
        background-size: cover !important;
        padding: 100px 0 !important;
    }

    .area-7 .wide {
        width: 800px !important; /* Mantendo seu padrão de 800px */
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .bloco7-texto {
        flex: 0 0 50%;
        color: #fff;
    }

    .bloco7-texto h2 {
        font-size: 42px;
        font-weight: 400;
        margin-bottom: 25px;
    }

    .bloco7-texto p {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 20px;
        max-width: 450px;
    }

    .btn-roxo {
        padding: 15px 40px;
        font-size: 18px;
        margin-top: 20px;
    }

    .bloco7-imagem {
        flex: 0 0 45%;
        display: flex;
        justify-content: flex-end;
    }
}

/* ==========================================================================
   AREA 7 - MOBILE E TABLET (Max-width: 1024px)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .area-7 {
        /* Adicionando o fundo no mobile conforme solicitado */
        background: #000 url('Imagens/Area7/bg_area7.png') center center no-repeat !important;
        background-size: cover !important;
        padding: 60px 0 !important;
        min-height: auto !important;
    }

    .area-7 .wide {
        width: 90% !important;
        display: flex !important;
        flex-direction: column !important; /* Texto em cima, Imagem embaixo */
        align-items: center !important;
        gap: 40px;
    }

    .bloco7-texto {
        width: 100% !important;
        text-align: center !important;
        color: #fff;
    }

    .bloco7-texto h2 {
        font-size: clamp(24px, 7vw, 32px) !important;
        margin-bottom: 20px;
    }

    .bloco7-texto p {
        font-size: 16px !important;
        margin: 0 auto 20px auto !important;
        max-width: 100% !important;
    }

    .btn-roxo {
        width: 100% !important;
        max-width: 280px;
        padding: 18px !important;
        font-size: 16px !important;
    }

    .bloco7-imagem {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .bloco7-imagem img {
        width: 100% !important;
        max-width: 350px !important; /* Ajusta os contatos para tamanho de celular */
        height: auto;
    }

    /* Ajuste do overlay de links para mobile */
    .contatos-overlay {
        width: 100% !important;
        max-width: 350px !important;
    }
}