.contato-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.contato-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.contato-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 12px rgba(26, 54, 93, 0.06);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 70px;
}

.contato-card:hover {
    box-shadow: 0 4px 16px rgba(26, 54, 93, 0.1);
}

.contato-card-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, #1A365D, #2D5A88);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.contato-card-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contato-card h4 {
    font-size: 1rem;
    color: #1A365D;
    margin: 0;
    font-weight: 600;
    min-width: 120px;
}

.contato-card-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contato-card p {
    color: #4A5568;
    margin: 0;
    line-height: 1.4;
    font-size: 0.95rem;
}

.contato-card strong {
    color: #1A365D;
}

.contato-mapa {
    margin: 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26, 54, 93, 0.1);
    position: relative;
    background: #f7fafc;
    min-height: 320px;
}

.contato-mapa-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9), rgba(45, 90, 136, 0.85));
    color: #fff;
}

.contato-map-button {
    background: #C8A977;
    color: #1A365D;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 2.4rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contato-map-button:hover {
    transform: translateY(-2px);
    background: #E6C28D;
}

.contato-mapa-placeholder small {
    opacity: 0.85;
    font-size: 0.85rem;
}

.contato-mapa iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.contato-cta {
    background: linear-gradient(135deg, #1A365D 0%, #2D5A88 100%);
    color: white;
    text-align: center;
    padding: 1.2rem 2rem;
    border-radius: 16px;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contato-cta h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.4rem;
}

.contato-cta p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contato-cta .cta-button {
    display: inline-block;
    background-color: #C8A977;
    color: white;
    padding: 0.65rem 2rem;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(200, 169, 119, 0.3);
    cursor: pointer;
    font-family: inherit;
}

.contato-cta .cta-button:hover {
    background-color: #B69865;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 119, 0.4);
}

/* Modal de Pergunta Cliente */
.contato-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.contato-modal.active {
    display: flex;
}

.contato-modal-content {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(26, 54, 93, 0.2);
    text-align: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contato-modal-content h3 {
    font-size: 1.5rem;
    color: #1A365D;
    margin-bottom: 1rem;
}

.contato-modal-content p {
    font-size: 1rem;
    color: #4A5568;
    margin-bottom: 2rem;
    text-align: justify;
}

.contato-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contato-modal-btn {
    flex: 1;
    min-width: 150px;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.contato-modal-btn--cliente {
    background-color: #1A365D;
    color: white;
}

.contato-modal-btn--cliente:hover {
    background-color: #2D5A88;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.contato-modal-btn--nao-cliente {
    background-color: #C8A977;
    color: white;
}

.contato-modal-btn--nao-cliente:hover {
    background-color: #B69865;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 169, 119, 0.3);
}

.contato-modal-btn--fechar {
    background-color: #E2E8F0;
    color: #4A5568;
    margin-top: 1rem;
}

.contato-modal-btn--fechar:hover {
    background-color: #CBD5E0;
}

@media (max-width: 768px) {
    .contato-card {
        padding: 1rem;
        min-height: auto;
    }
    
    .contato-card-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .contato-card h4 {
        min-width: auto;
    }
    
    .contato-card-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contato-cta {
        padding: 1rem 1.5rem;
    }
    
    .contato-cta h3 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }
    
    .contato-cta p {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }
    
    .contato-cta .cta-button {
        padding: 0.6rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .contato-modal-content {
        padding: 1.5rem;
    }
    
    .contato-modal-content h3 {
        font-size: 1.3rem;
    }
    
    .contato-modal-content p {
        font-size: 0.95rem;
    }
    
    .contato-modal-buttons {
        flex-direction: column;
    }
    
    .contato-modal-btn {
        width: 100%;
    }
}
