@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-style: normal;
}
:root {
    --textos: #272626;
    /*--fundo: #b3b3b3;*/
    --fundo: #f0f0f0;
    --detalhes: #780504;
}
body{
    width: 100%;
    background-color: var(--fundo);
    color: var(--textos);
}
header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    animation-name: start;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
}
@keyframes start{
    0%{
        opacity: 0;
        scale: 0.5;
    }
}
header img{
    max-width: 700px;
    width: 80%;
}

main .txt{
    display: block;
}
h2{
    font-weight: 800;
    border-bottom: 2px solid var(--detalhes); 
    margin-top: 60px;
    padding-left: 7px;
}
h2, h4{
    color: var(--detalhes);
}
main img{
    width: 400px;
    float: left;
}
main p{
    font-weight: 200;
    line-height: 45px;
    font-size: 1.5em;
    padding: 5px;
}

section .sec{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: auto;
    padding: 5px;
}
section .frst{
    width: 50%;
    padding: 5px;
}
section aside{
    width: auto;
    padding: 20px;
    display: block;
    
}
section aside ul{
    list-style: none;
}
section .sec .frst{
    font-weight: 200;
    line-height: 30px;
    font-size: 1.3em;
    /*text-indent: 60px;*/
    
}
section .sec .frst p{
    padding-top: 30px;
}
ul{
    justify-content: end;
}
ul li{
    mask-type: none;
    margin-top: 20px;
    font-weight: 200;
}
.imagem{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.imagem img{
    max-width: 100%;
    width: 1200px;
    height: auto;
    box-shadow: 2px 5px 18px var(--textos);
}
footer{
    background-image: url("../imagens/JULIA.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
footer .btn{
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    min-height: 400px;
    width: 100%;
}
footer a{
    text-decoration: none;
    text-align: center;
    color: var(--fundo);
    transition: 2s;
    background-color: var(--textos);
    padding: 20px;
    margin-left: 10px;
    width: 50%;
}
footer a:hover{
    color: var(--textos);
    background-color: var(--fundo);
    box-shadow: 2px 5px 18px var(--textos);
}
@media only screen and (max-width: 425px){
    footer a{
        font-size: 12px;
    }
}
@media only screen and (max-width: 600px){
    footer .btn{
        align-items: center;
    }
    footer a{
        width: 90%;
    }
}
@media only screen and (min-width: 1000px){
    footer a{
        width: 75%;
    }
}
@media only screen and (max-width: 660px){
    main img{
        float: none;
        width: 100%;
        max-width: 450px;
    }    
    main p{
        line-height: 25px;
        font-size: 1.1em;
    }
    
}
@media only screen and (max-width: 370px){
    footer h2{
        font-size: 1.3em;
    }
}
@media only screen and (min-width: 1300px){
    main .txt{
        display: flex;
        align-items: center;
    }    
}
@media only screen and (max-width: 1300px){
    section .sec{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 5px;
    }
    section .frst{
        width: 100%;
        padding: 5px;
    }
    section aside{
        width: 100%;
        padding: 10px;
        display: block;
        
    }
    section .sec .frst{
        font-weight: 200;
        line-height: 20px;
        font-size: 1.1em;
        /*text-indent: 0px;*/
        
    }
    section .sec .frst p{
        padding-top: 20px;
    }

}