/* Contenedor general */
.neuro-contacto-wrapper {
    width: 100%;
    padding: 60px 16px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}

.neuro-contacto-inner {
    max-width: 1180px;
    width: 100%;
    text-align: center;
}

/* Títulos */
.neuro-contacto-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.neuro-contacto-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

/* Tarjeta */
.neuro-contacto-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 32px 32px 40px;
    max-width: 720px;
    margin: 0 auto 24px;
    box-sizing: border-box;
}

/* Campos */
.neuro-contacto-form {
    text-align: left;
}

.neuro-contacto-field {
    margin-bottom: 20px;
}

.neuro-contacto-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.neuro-contacto-field input,
.neuro-contacto-field textarea {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    padding: 10px 12px;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background-color: #f9fafb;
}

.neuro-contacto-field input::placeholder,
.neuro-contacto-field textarea::placeholder {
    color: #9ca3af;
}

.neuro-contacto-field input:focus,
.neuro-contacto-field textarea:focus {
    border-color: #16a34a;
    box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.25);
    background-color: #ffffff;
}

/* Botón */
.neuro-contacto-actions {
    margin-top: 16px;
}

.neuro-contacto-submit {
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    background-color: #14532d;
    color: #ffffff;
    transition: background-color 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
}

.neuro-contacto-submit:hover {
    background-color: #166534;
    box-shadow: 0 6px 18px rgba(22, 101, 52, 0.35);
}

.neuro-contacto-submit:active {
    transform: translateY(1px);
    box-shadow: none;
}

/* Aviso */
.neuro-contacto-disclaimer {
    margin-top: 16px;
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
}

/* Alertas */
.neuro-contacto-alert {
    max-width: 720px;
    margin: 0 auto 16px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    text-align: left;
}

.neuro-contacto-alert.ok {
    background-color: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.neuro-contacto-alert.error {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

/* Responsive */
@media (max-width: 640px) {
    .neuro-contacto-wrapper {
        padding: 40px 16px;
    }

    .neuro-contacto-card {
        padding: 24px 20px 30px;
    }

    .neuro-contacto-title {
        font-size: 24px;
    }
}
