/* ==========================================================================
   AREA 1 - CONFIGURAÇÕES GLOBAIS
   (Estilos de cores, fontes e efeitos de botão)
   ========================================================================== */
.area-1 {
    background-color: #000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bloco-titulo h1 {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
}

.bloco-titulo h1 span {
    color: #F2E41D;
    font-weight: 900;
}

.texto-inferior {
    color: #fff;
}

.hero-image-final img {
    height: auto;
    display: block;
}

/* BOTÃO VERDE (Estilo se mantém em todas as telas) */
.btn-verde {
    display: inline-block !important;
    background: linear-gradient(180deg, #00ff55 0%, #00a838 100%) !important;
    color: #fff !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    font-weight: 900 !important;
    text-align: center !important;
    border: none !important;
    box-shadow: 0 0 20px rgba(0, 255, 85, 0.4) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
}

.btn-verde:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 0 30px rgba(0, 255, 85, 0.6) !important;
    filter: brightness(1.1);
}

/* ==========================================================================
   AREA 1 - DESKTOP (Min-width: 1025px)
   (Configurações atuais 100% preservadas)
   ========================================================================== */
@media screen and (min-width: 1025px) {
    .area-1 {
        background: #000 url('Imagens/Area1/bg_area1.png') center center no-repeat !important;
        background-size: cover !important; 
        padding: 80px 0 60px 0 !important;
        min-height: 550px;
    }

    .area-1 .wide {
        width: 800px !important;
        max-width: 800px !important;
        min-width: 800px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .bloco-titulo {
        width: 100%;
        margin-bottom: 25px;
    }

    .bloco-titulo h1 {
        font-size: 30px !important;
        line-height: 1.2;
    }

    .bloco-conteudo-imagem {
        display: flex !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        width: 100%;
    }

    .texto-inferior {
        flex: 0 0 52% !important; 
    }

    .texto-inferior p {
        font-size: 15px !important;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .hero-image-final {
        flex: 0 0 45% !important;
        margin-top: -60px !important; 
        display: flex;
        justify-content: flex-end;
    }

    .hero-image-final img {
        width: 420px !important; 
        max-width: 420px !important;
    }

    .btn-verde {
        padding: 14px 35px !important;
        font-size: 16px !important;
    }
}

/* ==========================================================================
   AREA 1 - MOBILE E TABLET (Max-width: 1024px)
   (Preparado para ajustes de empilhamento)
   ========================================================================== */
/* ==========================================================================
   AREA 1 - MOBILE E TABLET (Max-width: 1024px)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .area-1 {
        /* Garante que o BG apareça e ocupe tudo */
        background: #000 url('Imagens/Area1/bg_area1.png') center center no-repeat !important;
        background-size: cover !important;
        
        /* Aumentamos o padding para o texto descer e não ficar sob o topo */
        padding-top: 100px !important; 
        padding-bottom: 60px !important;
        min-height: 100vh;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .area-1 .wide {
        width: 90% !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* REMOVE A IMAGEM DA EQUIPE (A imagem que aparece na sua última foto) */
    .hero-image-final, 
    .hero-image-final img,
    .bloco-conteudo-imagem > div:last-child { 
        display: none !important; 
    }

    /* TÍTULO CENTRALIZADO E AJUSTÁVEL */
    .bloco-titulo {
        margin-bottom: 20px !important;
    }

    .bloco-titulo h1 {
        font-size: clamp(22px, 7vw, 32px) !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    /* TEXTO DE APOIO */
    .texto-inferior {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .texto-inferior p {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 25px !important;
        text-align: center !important;
    }

    /* BOTÃO MAIOR E INDIVIDUAL */
    .area-1 .btn-verde {
        display: block !important;
        width: 100% !important;
        max-width: 300px !important; /* Tamanho grande para polegar */
        margin: 10px auto 0 auto !important;
        padding: 18px 20px !important; /* Mais alto */
        font-size: 16px !important;
        line-height: 1 !important;
        clear: both !important;
    }
}