.financiamentos {
    padding: 60px 0;
    background-color: #fff;
}

.financiamentos-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--color-red);
}

.financiamentos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
    font-family: var(--font-organetto);
}

.financiamentos-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 700;
}

.financiamentos-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-section {
    background: #ffffff;
    border-radius: 12px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-red);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-organetto);
}

.section-title i {
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--color-gray);
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-red);
    background-color: #f9f9f9;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox-group {
    background: #ffffff;
    border-radius: 8px;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-gray);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-red);
    flex-shrink: 0;
}

.policy-link {
    color: var(--color-red);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #d11e28;
}

.form-submit-btn {
    width: fit-content;
    padding: 7px 17px;
    margin: 0 auto;
    background: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-red);
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-organetto);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.form-submit-btn:hover::before {
    width: 100%;
}

.form-submit-btn:hover {
    transform: translateY(-2px) scale(1.02);
    color: var(--color-red);
}

.form-submit-btn:active {
    transform: translateY(0) scale(0.98);
}

.form-submit-btn i {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Select styling */
select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

select.form-input option {
    background-color: #ffffff;
    color: var(--color-gray);
    padding: 10px;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 1399px) {
    .financiamentos-title {
        font-size: 2.35rem;
    }

    .section-title {
        font-size: 1.55rem;
    }
}

@media (max-width: 1199px) {
    .financiamentos {
        padding: 50px 0;
    }

    .financiamentos-title {
        font-size: 2.2rem;
    }

    .financiamentos-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

}

@media (max-width: 992px) {
    .financiamentos {
        padding: 40px 0;
    }

    .financiamentos-header {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }

    .financiamentos-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .financiamentos-subtitle {
        font-size: 0.9rem;
    }

    .financiamentos-form {
        gap: 35px;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 22px;
        gap: 10px;
    }

    .section-title i {
        font-size: 1.3rem;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input,
    .form-textarea {
        padding: 11px 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .financiamentos {
        padding: 30px 0;
    }

    .financiamentos-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .financiamentos-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .financiamentos-subtitle {
        font-size: 0.85rem;
    }

    .financiamentos-form {
        gap: 30px;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
        gap: 8px;
    }

    .section-title i {
        font-size: 1.2rem;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-label {
        font-size: 0.85rem;
        margin-bottom: 7px;
    }

    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .form-textarea {
        min-height: 100px;
    }

    .form-checkbox-label {
        font-size: 0.9rem;
    }

    .form-submit-btn {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .financiamentos {
        padding: 20px 0;
    }

    .financiamentos-header {
        margin-bottom: 25px;
        padding-bottom: 18px;
        border-bottom: 2px solid var(--color-red);
    }

    .financiamentos-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
        margin-top: 0;
    }

    .financiamentos-subtitle {
        font-size: 0.8rem;
    }

    .financiamentos-form {
        gap: 25px;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
        gap: 7px;
    }

    .section-title i {
        font-size: 1.1rem;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-label {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .form-input,
    .form-textarea {
        padding: 9px 11px;
        font-size: 0.85rem;
    }

    .form-textarea {
        min-height: 90px;
    }

    .form-checkbox-label {
        font-size: 0.85rem;
        gap: 8px;
    }

    .form-checkbox {
        width: 16px;
        height: 16px;
    }

    .form-submit-btn {
        gap: 8px;
    }

    .form-submit-btn i {
        font-size: 1.1rem;
    }

    select.form-input {
        background-position: right 12px center;
        padding-right: 35px;
    }

    .form-submit-btn {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .financiamentos {
        padding: 15px 0;
    }

    .financiamentos-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .financiamentos-title {
        font-size: 1.45rem;
    }

    .financiamentos-form {
        gap: 22px;
    }

    .section-title {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .section-title i {
        font-size: 1rem;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input,
    .form-textarea {
        padding: 8px 10px;
        font-size: 0.86rem;
        border-radius: 6px;
    }

    .form-textarea {
        min-height: 80px;
    }

    .form-checkbox-label {
        font-size: 0.75rem;
    }

    .form-submit-btn {
        border-radius: 8px;
    }
}

@media (max-width: 375px) {
    .financiamentos-title {
        font-size: 1.25rem;
    }

    .financiamentos-subtitle {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.05rem;
        margin-bottom: 14px;
        gap: 6px;
    }

    .section-title i {
        font-size: 0.95rem;
    }

    .form-checkbox-label {
        font-size: 0.75rem;
    }

    .form-submit-btn {
        font-size: .9rem;
    }
}