/* --- ESTILOS FORMULARIO CONTACTO --- */
.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    color: white;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #60a5fa;
    background: rgba(96, 165, 250, 0.05);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.1);
}

.form-input::placeholder {
    color: #4b5563;
}

/* --- BOTÓN PRIMARIO (El azul definitivo) --- */
.btn-primary {
    background: #2563eb; /* Azul base */
    color: white !important; /* Texto blanco obligatorio */
    padding: 1rem 2rem;
    border-radius: 1.25rem;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    border: none; /* Quita el borde por defecto del botón */
    cursor: pointer; /* Cambia el cursor a mano */
    text-decoration: none; /* Por si es un enlace <a> */
}

/* Efecto Hover (Al pasar el ratón) */
.btn-primary:hover {
    background: #1d4ed8; /* Un azul un poco más oscuro */
    transform: scale(1.03); /* Se agranda un pelín */
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3); /* Sombra azul sutil */
}

/* Efecto Active (Al clicar) */
.btn-primary:active {
    transform: scale(0.98); /* Se hunde un poco */
}

/* --- ESTILOS DE UTILIDAD PARA CONTACTO (Ex-Tailwind) --- */

.u-pt-32 { padding-top: 8rem; }
.u-text-center { text-align: center; }
.u-mb-16 { margin-bottom: 4rem; }
.u-mb-6 { margin-bottom: 1.5rem; }
.u-mb-4 { margin-bottom: 1rem; }
.u-mt-8 { margin-top: 2rem; }
.u-mt-6 { margin-top: 1.5rem; }
.u-mx-auto { margin-left: auto; margin-right: auto; }
.u-w-full { width: 100%; }
.u-min-h-32 { min-height: 8rem; }

/* Grid para el layout de contacto */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }
}

/* Grid para los campos Nombre/Email */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Estilos de las cajas de información */
.info-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    width: 2rem;
}

.info-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

.info-value {
    color: white;
    font-weight: 500;
}

/* --- TUS ESTILOS ORIGINALES DE CONTACTO.CSS --- */
.form-input {
    width: 100%;
    /* ... resto de tu código ... */
}