<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
}

body {
    height:100vh;
    margin: 0px;
    display:grid;
    grid-template-rows: 80px 1fr 60px;
    grid-template-columns: 1fr;
    grid-template-areas: 
    "cabecalho"
    "principal"
    "rodape";
}

.cabecalho {
    grid-area: cabecalho;
    background-color: white;
    color:black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 40px;
    box-shadow: 0px 0px 5px 8px rgba(0,0,0,0.1);
}

.principal {
    grid-area: principal;
/*    background-image: linear-gradient( 30deg, royalblue, skyblue, rgb(19, 81, 180) ); */
/*    background: linear-gradient(to left, rgb(19, 81, 180, 0.7) ,rgb(19, 81, 180, 0.45), rgb(19, 81, 180, 0.8));*/
    background-image: url("./azul.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

img{
    width: 10vw;
    margin-left: 50px;
}

main{     
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#quadrado{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 70vw;
    height: 75vh;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 8px rgba(0,0,0,0.1);
    border: 5px solid rgb(19, 81, 180, 1);
}

#texto-central{
    padding-top: 30px;
    margin-bottom:5%;
}

.btn{
    background-color: rgb(19, 81, 180);
    color:white;
    padding: 15px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    width: 25vw;
    font-family: 'Open Sans', sans-serif;
}

.btn:hover{
    background-color: #3379e9;
    color:white;

}

span{
    font-size:30px;
    font-weight: 800;
}

.fas{
    margin-right: 5px;
}

p{
    text-align: justify;
    padding: 15px 0px 0px 15px;
    font-size:18px;
}

.rodape {
    grid-area: rodape;
    background-color: white;
    color:white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    padding-right: 20px;
    box-shadow: 0px 0px 5px 8px rgba(0,0,0,0.1);
}

.texto-rodape{
    display: flex;
    flex-direction: column;
}

#duvidas{
    color:#333;
    font-size:15px;
    font-weight:400;
    text-align: center;
}

#texto-contato{
    text-align: center;
}

#contato{
    color:#333;
    font-size:15px;
    font-weight:400;
}

#whatsapp{
    color:#333;
    font-size:15px;
    font-weight:400;
    margin-left:20px;
}

#whatsapp:hover{
    color:rgb(19, 81, 180);
}

.quadrado-cel{
    display: none;
}

@media (min-height: 1200px) and (max-height: 1400px){
    #quadrado{
        display: none;
    }

    .quadrado-cel{
        display: show;
    }

    *{
       font-family: 'Open Sans', sans-serif; 
    }

    body {
        height:100vh;
        margin: 0px;
        display:grid;
        grid-template-rows: 100px 1fr 100px;
        grid-template-columns: 1fr;
        grid-template-areas: 
        "cabecalho"
        "principal"
        "rodape";
    }

    img{
        margin: 0 auto;
        width: 25vw;
    }

    .quadrado-cel{
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        background-color: white;
        width: 90%;
        height: 75vh;
        border-radius: 25px;
        padding: 20px;
        box-shadow: 0px 0px 5px 8px rgba(0,0,0,0.1);
        border: 8px solid rgb(19, 81, 180, 1);
    }

    span{
        font-size:40px;
        font-weight: 800;
    }

    #texto{
        text-align: center;
    }

    h4{
        font-size: 40px;
    }

    p{
        font-size: 25px !important;
    }

    .form-label{
        font-size: 40px !important;
        margin-top:5%;
    }

    #codigo_diploma{
        font-size: 30px;
        border: 3px solid #CED4DA;
        width: 60vw;
        padding:10px;
    }

    #botoes{
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 10vh;
        margin-top: 25px;
    }

    .btn{
        width: 60vw;
        font-size: 20px;
        padding: 25px;
        border-radius: 10px;
    }

    .bt1{
        margin-bottom: 20px;
    }

    .texto-rodape{
        display: flex;
        flex-direction: column;
    }

    #duvidas{
        color:#333;
        font-size:25px;
        font-weight:400;
    }

    #texto-contato{
        text-align: center;
    }

    #contato{
        color:#333;
        font-size:20px;
        font-weight:400;
    }

    #whatsapp{
        color:#333;
        font-size:20px;
        font-weight:400;
        margin-left:50px;
    }

    #whatsapp:hover{
        color:rgb(19, 81, 180);
    }
}

@media (min-height: 1400px) and (max-height: 2400px){
    #quadrado{
        display: none;
    }

    .quadrado-cel{
        display: show;
    }

    *{
       font-family: 'Open Sans', sans-serif; 
    }

    body {
        height:100vh;
        margin: 0px;
        display:grid;
        grid-template-rows: 160px 1fr 180px;
        grid-template-columns: 1fr;
        grid-template-areas: 
        "cabecalho"
        "principal"
        "rodape";
    }

    img{
        margin: 0 auto;
        width: 35vw;
    }

    .quadrado-cel{
        display: flex;
        flex-direction: column;
        align-items: center;
        align-content: center;
        background-color: white;
        width: 92%;
        height: 80vh;
        border-radius: 25px;
        padding: 20px;
        box-shadow: 0px 0px 5px 8px rgba(0,0,0,0.1);
        border: 15px solid rgb(19, 81, 180, 1);
    }

    .principal{
        padding:20px;
    }

    span{
        font-size:60px;
        font-weight: 800;
    }

    #texto{
        text-align: center;
    }

    h4{
        font-size: 50px;
    }

    p{
        font-size: 40px !important;
    }

    .form-label{
        font-size: 50px !important;
    }

    #codigo_diploma{
        font-size: 35px;
        border: 5px solid #CED4DA;
        width: 80vw;
        padding:20px;
    }

    #botoes{
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 10vh;
        margin-top: 20px;
    }

    .btn{
        width: 80vw;
        font-size: 35px;
        padding: 35px;
        border-radius: 15px;
    }

    .bt1{
        margin-bottom: 20px;
    }

    .texto-rodape{
        display: flex;
        flex-direction: column;
    }

    #duvidas{
        color:#333;
        font-size:40px;
        font-weight:400;
        text-align: center;
    }

    #contato{
        color:#333;
        font-size:35px;
        font-weight:400;
        margin-left:35px;
    }

    #whatsapp{
        color:#333;
        font-size:35px;
        font-weight:400;
        margin-left:50px;
    }

    #whatsapp:hover{
        color:rgb(19, 81, 180);
    }
}


</pre></body></html>