@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');
:root {

    --fonte-titulo:"Poppins";

    --cor-btn:#096452;
    --cor-subtitulo:#F5F5F5;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #0bc49c;
    box-sizing: border-box;
}
.home{
    width: 100%;
    display: flex;
    padding: 5% 5% 5% 5%;
    gap:100px;
}
.home-image{
    width: 40%;
    margin-top: 5%;
}
.home-image img{
    max-width: 100%;
}
.home-coteudo {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    gap:10px;
    width: 37%;
}
.home-coteudo h1 {
    font-size: 48px;
    font-family: var(--fonte-titulo);
    color: white;
}
.home-coteudo h2{
    font-size: 18px;
    font-family: var(--fonte-titulo);
    color: var(--cor-subtitulo);
}
.btn-home{
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: solid 1px var(--cor-btn);
    border-radius: 13%;
    color: var(--cor-btn);
    background-color: white;
    padding: 20px;
    width: 20%;
    font-family: var(--fonte-principal);
}
.btn-home:hover{
    box-shadow: var(--cor-btn) 0px 0px 5px 1px;
}
@media (max-width: 1024px) {
    .home { 
        gap: 6%; 
    }
    .home-imagem { 
        width: 28%; 
    }
    .home-coteudo { 
        width: 50%; 
    }
    .home-coteudo h1 { 
        font-size: 2.2em; 
    }
    .home-coteudo h2 { 
        font-size: 1.4em; 
    }
    .btn-home{
        padding:15px;
        font-size: 10px
    }
}
@media (max-width: 768px) {
    .home {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    .home-image {
        width: 50%;
        height: auto;
        margin-top: 80px;
    }
    .home-coteudo {
        width: 100%;
        margin-top: 0;
        align-items: center;
    }
    .home-coteudo h1 { 
        font-size: 2em;
    }
    .home-coteudo h2 { 
        font-size: 1.2em; 
    }
    .btn-home { 
        width: auto; 
        padding: 14px 28px; 
    }
}