/*========== Css Pai ==========*/
@import url("style.css");
/*========== Página =========*/


/*========== Card do formulário =========*/
.lead-form-contact .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#lead-form {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.8rem;
    box-shadow: var(--shadow-app);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: fadeUp 0.8s ease forwards;
}

#lead-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 4px;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(90deg, var(--accent-blue), #3388ff);
}

/*========== Header =========*/
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    color: var(--accent-blue);
    letter-spacing: -0.5px;
}

.form-header p {
    margin-top: 10px;
    color: var(--banner-color-p);
    line-height: 1.6;
}

/*========== Animação =========*/
@keyframes fadeUp {
    from {
        transform: translateY(25px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*========== Mobile =========*/
@media (max-width: 480px) {
    #lead-form {
        padding: 2rem 1.6rem;
        border-radius: 22px;
        border: 1px solid var(--border-hover);
    }
}
