/* =========================
   CONTENEDOR GENERAL
========================= */

.asofix-lead-form {
    margin-top: 24px;
    padding: 22px 24px;
    background: #1e1e1e; /* gris oscuro */
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.45);

    /* tamaño y posición */
    max-width: 640px;     /* más chico */
    margin-left: 0;       /* bien a la izquierda */
    margin-right: auto;
}

/* =========================
   GRID
========================= */

.asofix-lead-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* textarea y botón ocupan todo */
.asofix-lead-form textarea,
.asofix-lead-form button,
.asofix-lead-form .asofix-form-response {
    grid-column: 1 / -1;
}

/* =========================
   INPUTS
========================= */

.asofix-lead-form input,
.asofix-lead-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: #2f2f2f;           /* gris oscuro SIEMPRE */
    border: 1px solid #3f3f3f;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    transition: all 0.2s ease;
}


.asofix-lead-form textarea {
    min-height: 100px;
    resize: vertical;
}

.asofix-lead-form input::placeholder,
.asofix-lead-form textarea::placeholder {
    color: #b5b5b5;
}

.asofix-lead-form input:focus,
.asofix-lead-form textarea:focus {
    outline: none;
    border-color: #f5c400; /* amarillo */
    background: #303030;
}

/* =========================
   BOTÓN AMARILLO
========================= */

.asofix-lead-form button {
    margin-top: 8px;
    padding: 14px;
    background: linear-gradient(135deg, #f5c400, #e0b100);
    color: #111;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.asofix-lead-form button:hover {
    background: linear-gradient(135deg, #ffd84d, #f5c400);
    box-shadow: 0 6px 18px rgba(245,196,0,0.35);
    transform: translateY(-1px);
}

/* =========================
   MENSAJES
========================= */

.asofix-form-response {
    margin-top: 6px;
    font-size: 13px;
    color: #9ccc65;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .asofix-lead-form {
        max-width: 100%;
        grid-template-columns: 1fr;
    }
}




.asofix-form-title {
    grid-column: 1 / -1;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}


