@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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');

* {
    margin: 0px;
    padding: 0px;
    /* font-size: 20px; */
    font-family: "Inter", sans-serif;
}
body{
    background-color: white;
}
header{
    padding: 10px;
    background-color: rgb(4, 3, 63);
}
nav{
    display: flex;
    flex-direction: row;
    justify-content: center; 
    align-items: center;
    background-color: rgb(4, 3, 63);
    width: 100%;
    height: 50px;
}
nav a{
    text-decoration: none;
    color: white;
    transition: color 0.5s ease-in-out;
    margin: 20px;
}
nav a:hover{
    color: rgb(9, 219, 27);
}
h1{
    color: rgb(9, 219, 27);
    text-align: center;
}
h2 {
    color: blue;
    text-align: center;
}
h3{
    color: rgb(149,0,255); 
    text-align: center;
}
.home{
    background-color: rgb(7,3,15); 
    height: 450px;
    color: rgb(149,0,255); 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}
.produtos{
    background-color: rgb(35, 124, 27); 
    height: 500px;
    color: rgb(149,0,255); 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    flex-direction: column;
}
.servicos{
    background-color: rgb(195, 209, 66); 
    height: 500px;
    color: rgb(149,0,255); 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    flex-direction: column;
}
.contatos{
    background-color: blue;
    height: 500px;
    color: rgb(149,0,255); 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}
.card{
    background-color: rgb(255,255,255,0.3);
    margin: 60px;
    border-radius: 10px;
    color: aliceblue;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in-out;
}
.card:hover{
    transform: scale(1.1);
}
.card h3{
    margin: 20px;
}
.card img{
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
}
/* Botao WhatsAPP - Fixo Baixo Direito */
.btn-whatsapp {
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    border-color: rgb(182, 194, 13);
    border-radius: 30px;    
}