/* =================================================================== */
/* =================== ESTILOS DE RESPONSIVIDADE ===================== */
/* =================================================================== */
/* Padding fluido vive nas regras base via clamp(). Apenas overrides estruturais aqui. */
@media (max-width: 991.98px) {
    .contact-overlap-container { margin-top: 0; }
}

/* =================================================================== */
/* ======================= ESTILIZAÇÃO GERAL ======================== */
/* =================================================================== */

.contact-content-section {
    background-color: #f0f2f5;
    padding-top: clamp(2rem, 6vw, 3rem);
    padding-bottom: clamp(3rem, 8vw, 6rem);
}

.contact-overlap-container {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.contact-info-section {
    color: #495057;
}

.contact-info-section .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-info-section .info-icon {
    font-size: 1.5rem;
    color: var(--azul-claro);
    margin-right: 1rem;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #e0e7ef;
}

.contact-form-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
    padding: clamp(1.25rem, 4vw, 2rem);
}

.form-control {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}
.form-control:focus {
    border-color: var(--azul-claro);
    box-shadow: 0 0 0 0.25rem rgba(17, 151, 186, 0.25);
    background-color: #fff;
}

.btn-submit-custom {
    background-color: var(--azul-claro);
    border-color: var(--azul-claro);
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-submit-custom:hover {
    opacity: 1;
    color: var(--azul-claro);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.social-icons-contact a {
    color: #fff;
    background-color: var(--azul-claro);
    font-size: 1.2rem;
    margin-right: 0.5rem;
    transition: all 0.2s;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}
.social-icons-contact a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.modal-backdrop.show {
    opacity: .7;
}
.modal-content {
    border-radius: 1rem;
    border: none;
}
.modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0;
}
.modal-body {
    padding: 1.5rem;
}
.modal-footer {
    border-top: none;
    padding: 0 1.5rem 1.5rem;
}
.modal-success-icon {
    font-size: 4rem;
}
