.home-bg {
    background-color: var(--cor-c13);
    padding: 40px 0 120px 0;
}

.home {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home img {
    width: 120px;
    margin-bottom: 32px;
}

.home h3 {  
    margin-bottom: 32px;
}

.home h1 {
    max-width: 15ch;
    text-align: center;
    margin-bottom: 32px;
}

.home p {
    max-width: 70ch;
    text-align: center;
    margin-bottom: 36px;
}

.buttom-1 {
    padding: 16px 32px;
    background-color: var(--cor-w);
    border-radius: 16px;
    text-transform: uppercase;    
}

.buttom-1:hover {
    background-color: var(--cor-c2);
}

@media(max-width: 750px) {
    .home-bg {
        padding: 40px 0px 80px 0px;
    }

    .home img, .home h3, .home h1 {
        margin-bottom: 24px;
    }

    .home p {
        margin-bottom: 32px;   
        max-width: 59ch;
    }
}

@media(max-width:480px) {
    .font-1-xxl {
        font: 500 2.25rem/1.1 "Poppins", sans-serif;
    }

    .font-1-s {
        font: 400 0.75rem/1.5 "Roboto", sans-serif;
    }

    .home p {
        max-width: 40ch;
    }
}

.logo {
    border-radius: 50%; /* Makes the image a circle */
    object-fit: cover;  /* Ensures the image fills the circle without distortion */
}



