/* --- HERO ESPECÍFICO DE CONTACTO --- */
.contact-hero {
    min-height: 38vh;
    background: linear-gradient(rgba(7, 28, 66, 0.88), rgba(7, 28, 66, 0.88)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1600');
    background-size: cover;
    background-position: center;
}

/* --- CONTENEDORES Y INPUTS --- */
.form-container {
    border-color: #f1f5f9 !important;
}

.form-control, .form-select {
    padding: 11px 15px;
    font-size: 14px;
    border: 1.5px solid #e2e8f0;
    color: #334155;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--azul2);
    box-shadow: 0 0 0 3px rgba(15, 46, 104, 0.1);
    outline: none;
}

/* --- CARDS DE CANALES DIRECTOS --- */
.channel-card {
    border-color: #f1f5f9 !important;
    transition: transform 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-3px);
}

.channel-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Paletas suaves de fondo para íconos funcionales */
.bg-primary-soft { background-color: rgba(7, 28, 66, 0.06); }
.bg-success-soft { background-color: rgba(25, 135, 84, 0.08); }
.bg-warning-soft { background-color: rgba(243, 193, 44, 0.12); }

.bg-dark-flat {
    background-color: #1e293b;
}

.border-bottom-dashed {
    border-bottom: 1px dashed #e2e8f0;
}

/* --- CLASES DE SOPORTE GENERAL --- */
.text-xs { font-size: 11px; }
.text-sm { font-size: 13.5px; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.5px; }
.py-6 { padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }

@media (max-width: 991px) {
    .contact-hero {
        min-height: auto;
        padding: 50px 0;
    }
}


