/* --------------------------------------------------------------------------
   ESTILOS DEL MÓDULO DE CONTACTO
   -------------------------------------------------------------------------- */
.form-contacto {
    all: revert !important; 
    display: block !important;
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    box-sizing: border-box !important;
    background-color: #ffffff !important;
    border: 1.5px solid #9ca3af !important;
    border-radius: 8px !important;
    padding: 0 15px !important;
    font-family: inherit !important;
    font-size: 1rem !important;
    color: #374151 !important;
    line-height: normal !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

textarea.form-contacto {
    height: auto !important;
    min-height: 120px !important;
    padding: 15px !important;
}

.form-contacto:focus {
    background-color: #fff !important;
    border-color: #de0007 !important;
    box-shadow: 0 0 0 4px rgba(222,0,7,0.1) !important;
    outline: none !important;
}

.form-contacto::placeholder {
    color: #9ca3af !important;
    opacity: 1 !important;
}

/* Tarjetas de Mapas */
.map-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.03); margin-bottom: 20px; transition: all 0.3s ease; }
.map-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.08); transform: translateY(-3px); }
.map-header { padding: 15px 20px; background: #fff5f5; border-bottom: 1px solid #fecaca; }
.map-header h5 { margin: 0; font-weight: 800; color: #b91c1c; font-size: 1.1rem; text-transform: uppercase; }
.map-header p { margin: 5px 0 0 0; color: #4b5563; font-size: 0.9rem; font-weight: 500; }
.map-body iframe { width: 100%; height: 250px; border: none; display: block; }

/* Botón Enviar */
.btn-enviar { border-radius: 8px; font-weight: 600; padding: 12px 25px; transition: all 0.3s ease; background-color: #de0007; color: white; border: none; width: 100%; font-size: 1.1rem; }
.btn-enviar:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(222,0,7,0.2); background-color: #bf040a; }

.btn-enviar:disabled {
    background-color: #d1d5db !important;
    color: #6b7280 !important;
    cursor: not-allowed;
    box-shadow: none !important;
    transform: none !important;
}

.success-card { background: #d1fae5; border: 1px solid #a7f3d0; border-radius: 12px; padding: 40px 20px; text-align: center; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1); }
.success-card i { font-size: 4rem; color: #10b981; margin-bottom: 20px; }
.success-card h3 { color: #065f46; font-weight: 800; margin-bottom: 15px; }
.success-card p { color: #047857; font-size: 1.1rem; margin: 0; }
.msg-error { color: #dc3545; font-size: 0.85rem; margin-top: 5px; font-weight: 600; }