.custom-form.lead-capture-form {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(115, 98, 61, 0.7); /* Cor base com opacidade */
    backdrop-filter: blur(15px); /* Efeito vidro */
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem 2.5rem;
    border-radius: 2rem; /* Bordas muito arredondadas padrão premium */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-family: 'Inter', sans-serif; /* Tipografia limpa */
}

/* Título Impactante - Sans */
.custom-form .form-header h3.form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: -0.02em;
    color: #fff;
    text-align: left;
}

/* Subtítulo Inspiracional - Serif Italic */
.custom-form .form-header p.form-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.9;
}

.custom-form .form-group {
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
}

.custom-form label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
}

.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form select,
.custom-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.custom-form select option {
    background: #73623D;
    color: #fff;
}

.custom-form input:focus,
.custom-form select:focus,
.custom-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.custom-form input::placeholder,
.custom-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-form .form-privacy {
    margin: 1.5rem 0 2rem;
}

.custom-form .form-privacy p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Botão Premium com Hover Scale */
.custom-form .submit-button {
    width: 100%;
    padding: 1.2rem;
    background: #fff;
    color: #73623D;
    border: none;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-form .submit-button:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background: #f8f8f8;
}

.custom-form .submit-button:active {
    transform: scale(0.98);
}

/* Ajuste Responsivo */
@media (max-width: 480px) {
    .custom-form.lead-capture-form {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
    }
    
    .custom-form .form-header h3.form-title {
        font-size: 1.8rem;
    }
}
