/* Contact Page Styles */
.contact-container {
    display: flex;
    height: 90vh;
    width: 100%;
}

.contact-left, .contact-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.contact-right {
    background-image: url('/static/img/pattern_5.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-right img {
    max-width: 4        50px;
}



.contact-info {
    text-align: left;
    max-width: 500px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #128C7E;
}

.contact-logo-container {
    margin-top: 2rem;
}

.contact-logo-container img {
    max-width: 150px;
}

.contact-info p i,
.whatsapp-button i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        height: auto;
    }

    .contact-right {
        display: none; /* Oculta a imagem no mobile */
    }

    .contact-left {
        padding: 2rem 1rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
}
