/* ================================
   ESTILOS ESPECÍFICOS DE CONTACTO.HTML
   ================================ */

/* ================================
   ICONOS DE CONTACTO
   ================================ */
.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7a2a 0%, #ff6a00 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ================================
   FORMULARIO DE CONTACTO
   ================================ */
.contact-form-page input,
.contact-form-page textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.contact-form-page input:focus,
.contact-form-page textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff7a2a;
    box-shadow: 0 0 0 3px rgba(255, 122, 42, 0.1);
}

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

/* ================================
   MENSAJES DE ESTADO DEL FORMULARIO
   ================================ */
#form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

#form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}
