/* ==========================================================================
   ESTILOS FOOTER MODULAR GRIS OSCURO - COENEO
   ========================================================================== */
.coeneo-footer-wrapper {
    background-color: #0f172a !important;
    /* Gris oscuro mate */
    border-top: 3px solid #be185d;
    /* Acento rosa superior */
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(190, 24, 93, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.text-slate-400 {
    color: #94a3b8 !important;
}

.text-slate-600 {
    color: #475569 !important;
}

.text-pink-accent {
    color: #f472b6 !important;
}

.micro-text {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enlaces del Footer */
.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #f472b6;
    transform: translateX(4px);
}

/* Botones de Redes Sociales */
.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f472b6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #be185d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(190, 24, 93, 0.4);
}

/* Tarjetas de Acción de Contacto */
.contact-action-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.contact-action-card:hover {
    background: rgba(190, 24, 93, 0.15);
    border-color: #f472b6;
    transform: translateY(-2px);
}

.contact-icon-box {
    width: 42px;
    height: 42px;
    background: #be185d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Botones Inferiores (Aviso de Privacidad y Val-Corp) */
.btn-privacy-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease;
}

.btn-privacy-link:hover {
    background: #be185d;
    color: #ffffff;
    border-color: #be185d;
}

.btn-powered-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.25s ease;
}

.btn-powered-link strong {
    color: #f472b6;
}

.btn-powered-link:hover {
    color: #ffffff;
}

.btn-powered-link:hover strong {
    color: #f472b6;
    text-decoration: underline;
}