/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
body{
    padding: 0;
    margin: 0;
    background-color: #07102c;
    box-sizing: border-box;
    font-family: "Poppins" , sans-serif;
}

.conteudos-container {
    width: 100%;
    margin: 110px auto 0 auto;
    background-color: #FEFEFE;
    /* border-radius: 10px; */
    padding-bottom: 30px;
}

.botao__container {
    text-align: center;
    margin-top: 50px;
}

.botao__container--link {
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #07102c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.botao__container--link:hover {
    background: #000066;
    text-decoration: none;
    color: white;
}

.titulo {
    text-align: center;
    text-transform: uppercase;
    padding: 50px 0 30px 0;
    color: #000066;
    font-weight: bold;
}

.paragrafo {
    font-size: 16px;
    width: 85%;
    margin: 15px auto;
    text-align: justify;
    text-indent: 40px;
}

.paragrafo1 {
    text-indent: 0;
}

.logoSync-texto {
    /* position: absolute;
    left: 50px;
    top: 138px; */
    float: left;
    margin: 0 2% 0 7.5%;
    width: 125.7px;
    height: 80px;
}

.logoSync-texto2 {
    /* position: absolute;
    left: 50px;
    top: 138px; */
    float: left;
    margin: 5px 2% 0 7.5%;
    width: 127.5px;
    height: 70px;
}

@media screen and (max-width: 768px) {
    .paragrafo {
        font-size: 14px;
        width: 80%;
    }

    .titulo {
        font-size: 22px;
        padding: 35px 0 10px 0;
    }

    .logoSync-texto, .logoSync-texto2 {
        display: none;
        /* margin-left: 50%;
        margin-bottom: 30px;
        transform: translateX(-50%); */
    }
}

@media screen and (max-width: 600px) {
    .paragrafo {
        width: 70%;
    }
}