@import url(reset.css);
/* =========================================================
   PRINCIPAL
========================================================= */

.principal {
    width: 100%;
}


/* =========================================================
   IMAGEM DE FUNDO
========================================================= */

.imagemBackground {
    position: relative;

    width: 100%;
    min-height: 480px;

    overflow: hidden;

    display: flex;
    align-items: center;
}


/* =========================================================
   IMAGEM DE FUNDO
========================================================= */

.imagemBackground > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


/* =========================================================
   CONTEÚDO — LADO ESQUERDO
========================================================= */

.imagemBackground .conteudos {
    position: relative;

    z-index: 2;

    width: 60%;

    padding: 8% 8% 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}


/* =========================================================
   TÍTULO
========================================================= */

.imagemBackground .conteudos h2 {
    position: relative;

    max-width: 490px;

    margin: 0 0 10px;

    padding-bottom: 12px;

    color: var(--corBranca);

    font-size: 2rem;
    font-weight: var(--peso-2);

    line-height: 1.15;
}


/* =========================================================
   LINHA DECORATIVA
========================================================= */

.imagemBackground .conteudos h2::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 90%;
    height: 2px;

   background: linear-gradient(
        to right,
        var(--corPrincipal) 0,
        var(--corPrincipal) 60px,
        color-mix(in srgb, var(--corPrincipal) 30%, transparent) 20px,
        color-mix(in srgb, var(--corPrincipal) 30%, transparent) 100%
    );
}


/* =========================================================
   TEXTO
========================================================= */

.imagemBackground .conteudos p {
    max-width: 500px;

    margin: 0;

    color: var(--corBranca);

    font-size: var(--peso-4);
    font-weight: var(--peso-4);
    line-height: 1.4;
}



.imagemBackground .img {
    position: relative;
    z-index: 2;

    top: 210px;
    right: 10%;

    transform: translateY(-50%);

    width: 420px;
    height: 280px;

    background-color: var(--corSegundaria);
}

.imagemBackground .img img {
    position: absolute;
    z-index: 1;

    display: block;

    width: 410px;
    height: 280px;

    object-fit: cover;

    /* 20px acima do background */
    top: -40px;

    /* 35px para a direita */
    right: -25px;
}


/* ==========================================
   CONTEÚDO PRINCIPAL
========================================== */

.conteudo-politica {
    width: 100%;
    padding: 80px 0 100px;

}

.container-politica {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================
   BLOCOS
========================================== */

.bloco-politica {
    margin-bottom: 50px;
}

.bloco-politica:last-child {
    margin-bottom: 0;
}

.bloco-politica h2 {
    margin: 0 0 20px;
    color: var(--azulEscuro);
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.bloco-politica h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin-top: 8px;
    background: var(--corPrincipal);
}

.bloco-politica p {
    margin: 0 0 18px;
    color: var(--azulEscuro);
    font-size: .98rem;
    line-height: 1.65;
    font-weight: 300;
}

.bloco-politica p:last-child {
    margin-bottom: 0;
}

.bloco-politica a {
    color: var(--azulClaro);
    text-decoration: underline;
    transition: color .25s ease;
}

.bloco-politica a:hover {
    color: var(--laranjaForte);
}

/* ==========================================
   LISTAS
========================================== */

.lista-compromisso {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.lista-compromisso li {
    position: relative;
    margin-bottom: 18px;
    padding: 18px 22px 18px 28px;
    background: rgba(216, 174, 118, 0.1);
    border-radius: 8px;
    color: var(--azulEscuro);
    font-size: .95rem;
    line-height: 1.55;
    font-weight: 300;
    border-left: 4px solid var(--corPrincipal);
}

.lista-compromisso li strong {
    color: var(--azulEscuro);
    font-weight: 600;
}