
#home {
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 80%;
    background-color: #a8b0ff;
}
.content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    padding: 80px 40px ;
}


.text {
    flex: 1;
}

.text h1 {
    text-align: start;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #393939;
    text-align: justify;
}

.text .cta-button {
    padding: 10px 20px;
    background-color: #6666FF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.text .cta-button:hover {
    background-color: #5555CC;
}


.image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image img {
    max-width: 350px;
    height: auto;
}

@media (max-width: 1024px) {
    .content {
        text-align: center; 
        padding: 75px;  
    }
    .image {
        display: none; /* Esconde a imagem em telas menores */
    }

    #home {
        max-height: 80%;
    }
}

@media (max-width: 768px) {
    .content {
        
        text-align: center;
        padding: 25px;
    }


    .text h1 {
        font-size: 2.3rem;
    }

    .image {
        display: none; /* Esconde a imagem em telas menores */
    }

    #home {
        min-height: 80%;
    }
    .whatsapp-button{
        margin: 30px;
    }
    

}
