.contact-container{
   display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 80px;
}

.contact-info{
    flex: 1;
    font-size: 18px;
    line-height: 1.8;
}
.contact-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}
.whats-btn{
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    padding: 12px 20px;
    background-color: rgb(47, 255, 89);
    border-radius: 25px;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}
.whats-btn:hover{
    background-color: black;
}

.maps{
    flex: 1;
}

.maps iframe{
    width: 100%;
    border-radius: 10px;
}
@media (max-width: 428px){
    .contact-container{
        flex-direction: column;
        padding: 20px;
    }
    .contact-info {
        font-size: 16px;
    }

    .header > div > h1 {
        font-size: 18px;
        text-align: center;
    }

    .maps iframe {
        height: 250px;
    }

}

@media (min-width:427px) and (max-width:768px) {
      footer{
        position: fixed;
        bottom: 0px;
        width: 100%;
    }
    
}