@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    background-color: blue;
    background-image: url('./../img/bcc.jpg'); /* Coloque aqui a URL da imagem de fundo */
    background-size: cover;
    background-position: center;
    background-blend-mode:multiply;
    color: white;
    height: 100vh;
}


.header{
    /* background-color: red; */
    background-image: url('./../img/babybluetextver.png');
    background-size: 20%;
    background-position: center;
    /* background-blend-mode:normal; */
    width: calc(100% - 20px);
    border: 10px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

.header .img_div{
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    transform: translateY(50%);
}

.header img{
    position: relative;
    width: 200px;
}

.escritas{
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    color: white;
    margin-top: 150px;
    gap: 8px;
    text-align: center;

}

.escritas h1{
    font-size: 56px;
    font-weight: bolder;
    margin: 0;
    text-align: center;

}
.escritas h2{
    font-size: 36px;
    font-weight: normal;
    margin: 0;
    letter-spacing: 15px;
    text-align: center;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 56px 0;
    gap: 64px;
}

@media screen and (max-width: 1000px){

    .container{
        flex-direction: column;
        gap: 36px;
    }


    .header{
        height: 100px;
    }
    
    .header .img_div{
        height: 100px;
        width: 100px;
    }
    
    .header img{
        width: 100px;
    }

    .escritas{
        margin-top: 80px;
    }

    .escritas h1{
        font-size: 36px;
    
    }

    .escritas h2{
        font-size: 16px;
    }

    
   

}

.button{
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    width: fit-content;
    height: 50px;
    color: white;
    padding: 0px 0;
    border-radius: 16px;
    border: 2px solid white;
    transition: 0.3s all;
}

a{
    text-decoration: none;
    font-size: 24px;
}

.icone:last-child{
    opacity: 0;
}

.icone{
    background-color: blue;
    color: white;
    fill: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 50%;
    border: 8px solid white;
    transform: translateX(-50%);
    transition: 0.3s all;
}

.button:hover .icone{
    transform: translateX(-30%);
}
.button:hover{
    transform: scale(1.1);
}





/* .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}
.header {
    background-color: #D52B1E;
    padding: 15px;
    width: 100%;
    position: relative;
    text-align: center;
}
.header img {
    width: 150px;
    margin-bottom: 10px;
}
.header-title {
    font-size: 2.5em;
    margin: 0;
    padding: 0;
}
.header-subtitle {
    font-size: 1.2em;
    margin-top: 5px;
}
.button {
    background-color: #E22B1E;
    border: none;
    padding: 15px 30px;
    margin: 10px;
    width: 250px;
    color: white;
    font-size: 1.5em;
    text-align: center;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.button img {
    margin-right: 15px;
    width: 24px;
    height: 24px;
} */