/* BANNER */
.banner-page {
    background: var(--Atai-Inst---Verde-Verde-Main, #024638);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    display: flex;
    width: 100%;
    justify-content: center;
    height: 400px;
}

.content-banner {
    width: 1300px;
    display: flex;
    justify-content: flex-start;
}

.content-banner button {
    display: inline-flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--Atai-Inst---White-White-Main, #FFF);
    margin-top: 40px;
    color: var(--Atai-Inst---White-White-Main, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
    letter-spacing: 0.64px;
    text-transform: uppercase;
    width: fit-content;
}

.breadcrumb {
    color: var(--Atai-Inst---Verde-Verde-100, #3B7468);
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    /* 107.692% */
}

.titulo-banner {
    display: flex;
    flex-direction: column;
    padding: 32px 0;
    gap: 6px;
    width: 40%;
}

.titulo-banner h1 {
    color: var(--Atai-Inst---White-White-Main, #FFF);
    font-family: "Janson Text LT Std";
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
    line-height: 48px;
    /* 120% */
    margin-top: 70px;
}

.titulo-banner p {
    color: var(--Atai-Inst---White-White-Main, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.64px;
}

.imagem-banner {
    width: 70%;
    height: 382px;
}

.simbolo-ataia {
    display: flex;
    align-items: flex-end;
}


/* TEXTO POLÍTICA DE PRIVACIDADE */

.texto-politica {
    width: 900px;
    margin: auto;
    padding: 80px 0;
}

.cta-conteudo {
    width: 1200px;
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 1fr;
    margin: 0 auto;
    padding: 80px;
    justify-content: center;
    align-items: center;
    gap: 56px;
    border: 1px solid var(--Atai-Inst---White-White-Main, #FFF);
    background: var(--Atai-Inst---Terra-Terra-Main, #B58150);
    margin-bottom: 150px;
}

.titulo-cta {
    color: var(--Atai-Inst---Verde-Verde-Main, #024638);
    font-family: Poppins;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    /* 100% */
}

.texto-janson-politica {
    display: block;
    color: var(--Atai-Inst---Verde-Verde-Main, #024638);
    font-family: "Janson Text LT Std";
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
    line-height: 60px;
}

.cta-conteudo p {
    color: var(--Atai-Inst---White-White-Main, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.64px;
}

.cta-conteudo button {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--Atai-Inst---White-White-Main, #FFF);
    color: var(--Atai-Inst---White-White-Main, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 100% */
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 1024px) {

    /* BANNER */
    .banner-page {
        background-position: center;
        background-size: cover;
        height: auto;
        padding: 60px 20px;
        flex-direction: column;
    }

    .content-banner {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .titulo-banner {
        width: 100%;
        padding: 0;
        align-items: center;
    }

    .titulo-banner h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-top: 20px;
    }

    .simbolo-ataia {
        margin-top: 40px;
        width: 100%;
        justify-content: center;
    }

    .simbolo-ataia img {
        max-width: 150px;
    }

    /* TEXTO POLÍTICA */
    .texto-politica {
        width: 100%;
        padding: 40px 20px;
    }

    /* CTA CONTEÚDO */
    .cta-conteudo {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
        text-align: center;
        margin-bottom: 60px;
    }

    .titulo-cta {
        font-size: 28px;
        line-height: 1.2;
    }

    .texto-janson-politica {
        font-size: 32px;
        line-height: 1.2;
    }

    .cta-conteudo button {
        width: 100%;
    }
}