.form-section {
    position: relative;
    width: 100%;
    background-color: #495EAB;
    padding: 180px 0 120px 0;
    overflow: hidden;
}

.form-diagonal-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 151px;
    background-color: var(--theme-palette-color-1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
    z-index: 1;
}

.form-container {
    position: relative;
    z-index: 2;
}

.form-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

.form-left {
    padding-top: 40px;
}

.form-title {
    font-size: 45px;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.form-right {
    width: 100%;
}

.form-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    height: auto;
    z-index: 0;
}

/* Estilização do formulário Formidable */
.form-section .frm_forms input[type="text"],
.form-section .frm_forms input[type="email"],
.form-section .frm_forms input[type="tel"],
.form-section .frm_forms select,
.form-section .frm_forms textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    background-color: #ffffff;
    margin-bottom: 20px;
}

.form-section .frm_forms label {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.form-section .frm_submit button,
.form-section .frm_submit input[type="submit"] {
    background-color: #F6D126;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 50px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.form-section .frm_submit button:hover,
.form-section .frm_submit input[type="submit"]:hover {
    background-color: #e5c015;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .form-section {
        padding: 140px 0 100px 0;
    }
    
    .form-diagonal-top {
        height: 120px;
    }
    
    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-left {
        padding-top: 0;
    }
    
    .form-title {
        font-size: 32px;
    }
    
    .form-shape {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .form-section {
        padding: 120px 0 100px 0;
    }
    
    .form-diagonal-top {
        height: 100px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-shape {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .form-section {
        padding: 100px 0 80px 0;
    }
    
    .form-diagonal-top {
        height: 80px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-shape {
        width: 150px;
    }
    
    .form-section .frm_submit button,
    .form-section .frm_submit input[type="submit"] {
        width: 100%;
        padding: 15px 30px;
        font-size: 16px;
    }
}