/* ======================================================
   COMO TUDO ISSO É POSSÍVEL
====================================================== */

.transparencia{
    padding:70px 0;
    background:#050505;
}

.transparencia .container{
    max-width:1280px;
    margin:0 auto;
    padding:0 30px;
}

/* ===========================
   CABEÇALHO
=========================== */

.transparencia-header{

    width:100%;

    max-width:1000px;

    margin:0 auto;

    padding-inline: clamp(40px, 6vw, 120px);

    box-sizing:border-box;

    text-align:center;

}

.transparencia-header .section-title{
    
    margin-bottom:30px;

    font-size:50px;

    font-family:'Anton', sans-serif;

}

.transparencia-subtitle{
    max-width:900px;

    margin:0 auto;

    font-size:20px;

    line-height:1.9;

    color:#bdbdbd;
}

/* ===========================
   CONTEÚDO
=========================== */

.transparencia-content{

    width:100%;

    max-width:1200px;

    margin:90px auto 0;

    padding-inline: clamp(40px, 6vw, 120px);

    box-sizing:border-box;

}

.transparencia-content p{

    font-size:18px;

    max-width:1100px;
    
    line-height:2;

    color:#d5d5d5;

    margin-bottom:34px;

}

.transparencia-content strong{

    color:#ffffff;

    font-weight:600;

}

.transparencia-content h3{

    font-family:'Anton', sans-serif;

    font-size:34px;

    font-weight:400;

    color:#ffffff;

    letter-spacing:1px;

    margin:70px 0 35px;

}

.transparencia-highlight{

    font-size:20px !important;

    color:#ffffff !important;

    line-height:1.9;

}

/* ===========================
   CREDIBILIDADE
=========================== */

.transparencia-proof{

    margin-top:-50px;

    text-align:center;

}

.transparencia-proof img{

    width:800px;

    margin-bottom:0px;

    opacity:.95;

}

.transparencia-proof p{

    font-size:16px;

    color:#8f8f8f;

    line-height:1.8;
    
}

/* ==================================================
   CHAMADA PRÓXIMA SEÇÃO
================================================== */

.next-section-call{

    margin-top:0px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;

}

.next-section-text{

    font-family:'Poppins',sans-serif;

    font-size:22px;

    color:#bdbdbd;

    margin-bottom:10px;

}

.next-section-call h3{

    font-family:'Anton',sans-serif;

    font-size:38px;

    font-weight:400;

    color:#ffffff;

    line-height:1.15;

    letter-spacing:.5px;

    max-width:760px;

    margin-bottom:65px;

}

.next-section-arrow{

    width:72px;

    height:72px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:#00DA00;

    border:1px solid rgba(0,218,0,.22);

    background:rgba(0,218,0,.04);

    box-shadow:
    
    0 0 18px rgba(0,218,0,.18),
    0 0 35px rgba(0,218,0,.08),
    inset 0 0 18px rgba(0,218,0,.03);

    transition:.35s ease;

    animation:arrowFloat 2.2s ease-in-out infinite;

}

.next-section-arrow i{

    font-size:28px;

}

.next-section-arrow:hover{

    transform:translateY(4px) scale(1.08);

    background:#00DA00;

    color:#050505;

    box-shadow:
        0 0 40px rgba(0,218,0,.45);

}

@keyframes arrowFloat{

    0%{

        transform:translateY(0);

        box-shadow:
            0 0 18px rgba(0,218,0,.15);

    }

    50%{

        transform:translateY(10px);

        box-shadow:
            0 0 35px rgba(0,218,0,.45);

    }

    100%{

        transform:translateY(0);

        box-shadow:
            0 0 18px rgba(0,218,0,.15);

    }

}

.next-section-arrow svg{

    width:30px;

    height:30px;

    stroke-width:2;

}