#contato {
    background-color: #fff9ea;
    padding: 120px 70px 120px 70px;
    padding-top: 30px;
}
.contato-container {
    display: flex;
    gap: 60px;
    align-items: stretch;
}
.contato-col-esquerda {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.contato-col-direita {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
#contato h2 {
    color: #454545;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}
#contato > p {
    color: #5a5a5a;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 32px;
}
.contato-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contato-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.contato-item i {
    width: 44px;
    height: 44px;
    background-color: #383838;
    border-radius: 8px;
    color: #efc899;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contato-texto strong {
    display: block;
    color: #b69771;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.contato-texto p, .contato-texto a {
    color: #454545;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contato-texto a:hover {
    color: #b69771;
    text-decoration: none;
}
.mapa-container {
    width: 100%;    
    flex: 1;
    min-height: 300px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #efc899;
    margin-top: 32px;
}
.mapa-container iframe {
    width: 100%;
    height: 100%;
}
.escritorio-foto {
    flex: 1;
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
    max-height: none; 
}
.escritorio-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.convite-card {
    display: flex;
    flex-direction: column;
    background-color: #454545;
    padding: 50px;
    border-radius: 3px;
    color: #ffffff;
    gap: 20px; 
}
.convite-card .span-estilo, .convite-card h3, .convite-card p {
    margin: 0;
}
.convite-card h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
}
.convite-card p {
    color: #fff9ea;
    font-size: 1rem;
    line-height: 1.6;
}
.convite-card .btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    padding: 12px 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center; 
    gap: 10px;
    width: 100%;            
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}
.convite-card .btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

@media screen and (max-width: 900px) {
    #contato { padding: 20px 20px; }
    .contato-container {
        flex-direction: column;
        gap: 40px;
    }
    .contato-col-esquerda, .contato-col-direita { width: 100%; }
    .mapa-container {
        position: relative;
        height: 350px;
        min-height: 350px;
        flex: none;
        display: block;
        margin-top: 30px;
    }
    .mapa-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: auto;
    }
    .escritorio-foto {
        order: 1;
        height: 250px; 
        width: 100%;
        border-radius: 3px;
        overflow: hidden;
        flex: none;
    }
    .escritorio-foto img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .convite-card { order: 2; }
}