@font-face {
    font-family: "Lato" ;
    src: url(/font/Lato-Regular.ttf);
}

@font-face {
    font-family: "Merriweather-Bold" ;
    src: url(/font/Merriweather-Bold.ttf);
}

@font-face {
    font-family: "Merriweather-Regular" ;
    src: url(/font/Merriweather-Regular.ttf);
}


*{
    margin: 0;
	padding: 0;
	border: 0;
    font-weight: 400;
    font-size: 100%;
    font-family: "Lato";
}

body{
    background-color:#F9F9F9;
}

#top{
    display: flex;
    background-color:#D7D4FF ;
    justify-content: center;
}

#top_img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
}

#top_img img{
    height: 55%;
}

#top_text_section{
    display: flex;
    width: 40%;
    justify-content: center;
}

#top_text{
    display: flex;
    justify-content: center;    
    flex-direction: column;
    width: 70%;
    height: 100%;
}

#top_text h1{
    font-weight: 400;
    font-size: 36px;
    line-height: 47px;
    color: #2B2B2B;
}

#top_text p{
    font-weight: 400;
    font-size: 19px;
    line-height: 32px;
    color: #555555;
}

#button{
    background: #6C63FF;
    color: white;
    box-shadow: 0px 5px 5px rgba(23, 23, 23, 0.1);
    border-radius: 5px;
    width: 60%;
    height: 2.5rem;
    margin-block: 40px;
    cursor: pointer;
}

#card_section{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color:#F9F9F9;
    justify-content: space-evenly;
}

.card{
    display: flex;
    flex-direction: column;
    width: 300px;
    background-color: white;
    box-shadow: 5px 5px 8px rgba(23, 23, 23, 0.1);
    margin-block: 2%;
}

.card_img{
    padding-bottom: 60%;
}

.card_text{
    display: flex;
    flex-direction: column;
    width: 90%;
    margin-inline: 20px;
    margin-block: 20px;
}

.card_text h1{
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    font-style:"Merriweather-Regular";
    color: #2B2B2B;
    margin-block: 10px;
}

.card_text p{
    margin-block: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #555555;
}

#red{
    background-color: #FF6363;
}

#cyan{
    background-color: #63ECFF;
}

#pink{
    background-color: #F363FF;
}

#green{
    background-color: #63FF73;
}

#yellow{
    background-color: #FFDD63;
}

#blue{
    background-color: #6663FF;
}

#bottom{
    display: flex;
    flex-direction: column;
    background-color:#D7D4FF ;
    align-items: center;
}

#bottom h1{
    font-family: 'Merriweather-Regular';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    margin-block: 5%;
}

#inputs{
    display: flex;
    flex-direction: column;
    width: 35vw;
}

.contato{
    margin-block: 2% ;
    height: 50px;
    border-radius: 6px;
    padding-inline: 15px;
}

#mensage{
    margin-block: 2%;
    padding-inline: 15px;
    height: 200px;
    border-radius: 6px;
}

#button_send{
    background: #6C63FF;
    color: white;
    box-shadow: 0px 5px 5px rgba(23, 23, 23, 0.1);
    border-radius: 5px;
    height: 60px;
    margin-block: 5%;
    cursor: pointer;
}

/* ***** Copyright *****  */

#copy_section{
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 90%;
    background-color: #D7D4FF;
}

#copy_button{
    background-color: #D7D4FF;
    color: #000000;
    border: 1px solid black;
    border-bottom: 0px solid;
    cursor: pointer;
    align-self: flex-end;
    width: 1rem;
    height: 1rem;
    font-size: 0.8rem;
}

#copy_hidden{
    display: none;
}

#copy_hidden a{
    text-decoration: none;
    color:#569ff5;
    margin-inline: 0rem;
}

#copy_section.show #copy_hidden{
    font-size: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    color: #000000;
    background-color: #D7D4FF;
    border-top: 1px solid black;
}


@media(max-width: 768px) {

    #top{
        flex-direction: column;
        height: unset;
    }
    
    #top_text_section{
        margin-top: 50px;
        width: 100%;
    }
    
    #top_text{
        width: 90%;
    }
    
    #top_text h1{
        font-size: 32px;
    }
    
    #top_text p{
        font-size: 18px;

    }
    
    #button{
        width: 50%;
    }
    
    #top_img{
        width: 100%;
        height: 50%;
        margin-top: 30px;
        margin-bottom: 60px;
    }
    
    #top_img img{
        width: 80%;
    }

    .card{
        margin-top: 10%;
    }
    
    #card_section{
        margin-bottom: 10%;
    }

    #bottom h1{
        margin-top: 15%;
    }

    #inputs{
        width: 80%;
    }
}