@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

* {
    margin: 0px;
    padding: 0px;
   
}
:root {
    --fonte01: 'Roboto', sans-serif;
    --fonte02: 'Montserrat', sans-serif;
    --cor01: #FFFFFF;
    --cor02: #003CFF;
    --cor03: #4772FF;
    --cor04: #399B53;
    --cor05: #399B53;
    --cor06: #FAFAFA;
/*  --cor02: #003CFF;
    --cor03: #4772FF; */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte02);
  
}

.head {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 3px;
    background-color: var(--cor01);
    
}

header {
    border-bottom: 10px solid var(--cor02);

}

nav a {
    padding: 0px;
    margin: 25px;
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
    color: var(--cor02);
}

nav a:hover {
    color: var(--cor03);

}
.espaco {
    padding: 5px;
    background-color:var(--cor02);

}

section {
    min-width: 300px;
    max-width: 1200px;
    margin: auto;
    height: 78vh;
    display: flex;
    align-items: center;
    padding: 10px;
    /* box-shadow: 1px 1px 10px rgba(134, 134, 134, 0.164); */
    
}

picture > img{
    display: block;
    margin: auto;
}

img {
    width: 50%;
    

}
h1 {
    font-weight: 600;
    font-size: 3em;
    margin-bottom: 0px;

}

p {
    font-size: 1.3rem;
    line-height: 1.9rem;
}

.resumo {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 20px;

}

div.blocogrande {
    background-color: var(--cor02);
    color: white;
    text-align: center;
    padding: 30px 30px 90px 30px;
    margin: auto;
    height: auto;
    width: auto;

}

div.blocogrande  h1 {
    padding-bottom: 30px;

}

#links {
    margin: auto;
    padding: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
        
}

div.bloco i {
    font-size: 2em;
    padding-bottom: 10px;

}

div.bloco {
    color: white;
    height: 200px;
    width: 300px;
    display: flex;
    flex-direction: column;
    margin: 0px 20px;
    padding: 25px;
    border: 2px solid var(--cor01);
    border-radius: 10px;
    text-decoration: none;
       
}

div.bloco a {
    text-decoration: none;
    color: var(--cor01);

}

div.bloco a:hover {
    text-decoration: underline;
    

}

div.bloco  p {
    font-size: 1.2rem;
    line-height: 1.9rem;
    font-weight: 500;
}

.botao {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--cor01);
    background-color: var(--cor02);
    padding: 16px 30px;
    margin: 0px 10px ;
    border-radius: 15px;
    border: none; 

}

.botao:hover {
    background-color: var(--cor03);
    transition: 200ms;

}

#calc {
    display: block;
    align-items: center;
    line-height: 30px;
    margin:20px auto 20px auto ;
    padding: 50px;
    width: 700px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.158);
    border-radius: 10px;

}

li {
    font-size: 1.2em;

}

input, button {
    font-size: 1em;

}

main#blog {
    background-color: var(--cor06);
}

article {
    font-family: var(--fonte02);
    margin: auto;
    padding: 60px 30px;
    background-color: var(--cor01);
    text-align: left;
    max-width: 1200px;
    box-shadow: 1px 1px 10px rgba(134, 134, 134, 0.164);
    
}

article > p {
    text-align: justify;
    font-size: 1.3rem;
    line-height: 2.2rem;
    padding-top: 1.2em;
}

div.video {
    margin-bottom: 30px;
    margin: 0px -20px 30px -20px;
    padding: 20px;
    padding-bottom: 56.5%;
    position: relative;
}

div.video > iframe{
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;

}

.contato {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 20px;

}

.contato a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    color: var(--cor02);
    
}

.contato a:hover {
    color: var(--cor03);
    text-decoration: underline;
    transition: 200ms;
    

}

.sobre-nos{
    text-align: center;
    height: 100%;
}


.img-sobre{
    width: -50%;
}

footer {
    background-color: var(--cor01);
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
    font-weight: 700;

}

#space{
    margin-top: 50px;
}

@media only screen and (max-width: 1000px) {

    div.bloco {
        color: var(--cor01);
        height: 18vh;
        width: 75vw;
        display: flex;
        flex-direction: column;
        margin: 10px 10px;
        padding: 20px;
        border: 2px solid var(--cor01);
        border-radius: 10px;
        text-decoration: none;
           
    }

    #links {
        margin: auto;
        padding: 0px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
            
    }

}

@media only screen and (max-width: 480px) {

    #logo {
        width: 0%;
    }

    .head {
        display: flex;
        flex-direction: row;
        justify-content: none;
        align-items: center;
        gap: 0 px;
    }

    nav a{
        margin: 15px;
    }

    section {
        height: auto;
        display: flex;
        flex-direction: column;
        
       
    }
    .resumo {
        text-align: left;
        line-height: 25px;
        align-items: center;
        
    }

    h1 {
        font-weight: bold;
        font-size: 1.7rem;
    }

    h2 {
        font-weight: bold;
        font-size: 1.3rem;
        
    }

    p, li {
        font-size: 1.1rem;
                 
    }

    img {
        max-width: 100%;
    }

    .botao {
        font-size: 1em;
    }

    div.blocogrande {
        background-color: var(--cor02);
        color: var(--cor01);
        margin: auto;
        height: auto;
        width: auto;
        padding: 20px;
    
    }

    div.bloco {
        color: var(--cor01);
        height: 200px;
        width: 300px;
        display: flex;
        flex-direction: column;
        margin: 10px 20px;
        padding: 20px;
        border: 2px solid var(--cor01);
        border-radius: 10px;
        text-decoration: none;
           
    }

    div.bloco p {
        font-size: 1.1rem;

    }

    #links {
        margin: auto;
        padding: 0px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
            
    }

    #calc {
        line-height: 25px;
        margin:20px auto 20px auto ;
        width: auto;
        padding: 30px;
        
    }

    article > p {
        text-align: left;
        font-size: 1.1rem;
        line-height: 2rem;
        padding-top: 1em;
    }

    article > p > cite a {
        font-size: small;
    }
    footer {
        background-color: var(--cor01);
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
        font-weight: 700;
        font-size: 0.8em;
    }
}

