/* ==========================================================================
   AREA 3 - CONFIGURAÇÕES GLOBAIS
   (Estilos de cores e tipografia)
   ========================================================================== */
.area-3 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.area-3 .titulo-frentes {
    text-align: center;
    color: #fff;
    font-family: 'Raleway', sans-serif;
}

.area-3 .titulo-frentes h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 400;
}

.area-3 .titulo-frentes h2 span {
    color: #F2E41D;
    font-weight: 900;
}

.area-3 .grid-frentes {
    display: flex;
    justify-content: center;
    width: 100%;
}

.area-3 .grid-frentes img {
    height: auto;
}

/* ==========================================================================
   AREA 3 - DESKTOP (Min-width: 1025px)
   (Layout horizontal para as imagens)
   ========================================================================== */
@media screen and (min-width: 1025px) {
    .area-3 {
        background: #000 url('Imagens/Area3/bg_area3.png') center center no-repeat !important;
        background-size: cover !important;
        padding: 80px 0;
    }

    .area-3 .wide {
        width: 800px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 40px;
    }

    .area-3 .grid-frentes {
        flex-direction: row !important;
        gap: 25px;
    }

    .area-3 .grid-frentes img {
        max-width: 48% !important;
    }
}

/* ==========================================================================
   AREA 3 - MOBILE E TABLET (Max-width: 1024px)
   (Layout vertical para as imagens)
   ========================================================================== */
/* ==========================================================================
   AREA 3 - MOBILE E TABLET (Max-width: 1024px)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .area-3 {
        /* Aplicando o BG no mesmo conceito das áreas anteriores */
        background: #000 url('Imagens/Area3/bg_area3.png') center center no-repeat !important;
        background-size: cover !important;
        
        padding: 60px 0 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        position: relative;
    }

    .area-3 .wide {
        width: 90% !important;
        max-width: none !important;
        min-width: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px;
    }

    .area-3 .grid-frentes {
        display: flex !important;
        flex-direction: column !important; /* Empilha os itens verticalmente */
        align-items: center !important;
        gap: 20px;
        width: 100% !important;
    }

    .area-3 .grid-frentes img {
        width: 100% !important;
        max-width: 320px !important; /* Tamanho levemente maior para destaque */
        height: auto !important;
        display: block;
    }
}