
/* ================================
   FORMULÁRIO NO FOOTER
   ================================ */

.footer-form-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    color: #fff;
}

.footer-form-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    /*color: var(--primary-color, #ffc107);*/
    color: #ffcf40;
    text-shadow: 2px 2px 4px #000000;
}

.footer-form-section .section-title:hover {
    color: #ffc107;
    text-shadow: 2px 2px 4px #000000;
    transform: translateY(1px);
}

.form-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.form-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
}

.form-box h3 {
    color: #ffcf40;
    text-shadow: 2px 2px 4px #000000;
    /*color: var(--primary-color, #ffc107);*/
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-box h3:hover {
    color: #ffc107;
    text-shadow: 2px 2px 4px #000000;
    transform: translateY(1px);
}

/* Inputs e Textarea */
.input-field {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
    transition: background 0.3s ease;
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-field:focus {
    background: rgba(255, 255, 255, 0.2);
}

/* Checkbox */
.consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: left;
    margin-bottom: 1.2rem;
}

.consent input[type="checkbox"] {
    accent-color: var(--primary-color, #ffc107);
}

.consent label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Botão de Envio */
.submit-btn {
    background: var(--primary-color, #ffc107);
    color: #222;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background: #ffcf40;
    transform: translateY(-2px);
}

/* HR Divisória */
.footer-divider {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto 1.5rem;
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 2px;
}

/* ================================
   RESPONSIVIDADE
   ================================ */

@media (max-width: 768px) {
    .form-box {
        padding: 1.5rem;
        max-width: 90%;
    }

    .footer-form-section {
        padding: 1.5rem 1rem;
    }

    .footer-divider {
        margin: 1.5rem auto;
    }
}