/* Seção de Formulário de Contato */

.contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-form-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Coluna esquerda - Texto de apoio */
.contact-form-left {
    flex: 1;
    max-width: 50%;
}

.contact-form-left h2 {
    color: #1e3a8a;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-subtitle {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Benefícios */
.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-benefit-icon {
    width: 28px;
    height: 28px;
    background: #1e3a8a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.contact-benefit-text {
    color: #1e293b;
    font-size: 16px;
    line-height: 1.6;
    padding-top: 2px;
}

/* Coluna direita - Formulário */
.contact-form-right {
    flex: 1;
    max-width: 50%;
}

.contact-form-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 35px;
}

.contact-form-container h3 {
    color: #1e3a8a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.contact-form-container > p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form-content {
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-form-wrapper {
        gap: 40px;
    }

    .contact-form-left h2 {
        font-size: 32px;
    }

    .contact-form-right {
        flex: 0 0 440px;
    }
}

@media (max-width: 968px) {
    .contact-form-section {
        padding: 60px 20px;
    }

    .contact-form-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form-left h2 {
        font-size: 28px;
        text-align: center;
    }

    .contact-subtitle {
        font-size: 16px;
        text-align: center;
    }

    .contact-benefits {
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-form-right {
        flex: 1;
        width: 100%;
        max-width: 600px;
    }

    .contact-form-container {
        padding: 30px 25px;
    }

    .contact-form-container h3 {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .contact-form-section {
        padding: 50px 15px;
    }

    .contact-form-left h2 {
        font-size: 24px;
    }

    .contact-subtitle {
        font-size: 15px;
    }

    .contact-benefit-item {
        gap: 12px;
    }

    .contact-benefit-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .contact-benefit-text {
        font-size: 15px;
    }

    .contact-form-container {
        padding: 25px 20px;
    }

    .contact-form-container h3 {
        font-size: 22px;
    }

    .contact-form-container > p {
        font-size: 14px;
    }
}
