/* ===== MINIMAL FOOTER V2 ===== */
.micoope-footer {
    background-color: var(--micoope-blue-dark);
    color: var(--white);
    padding: 60px 0 20px;
    font-family: 'Poppins', sans-serif; /* O la fuente que uses */
}

.footer-main-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-img {
    max-width: 120px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 350px;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

/* Línea decorativa minimalista */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--micoope-blue-light);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--micoope-blue-light);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Color para los iconos de contacto */
.footer-contact i {
    color: var(--micoope-blue-light);
    margin-top: 4px;
    font-size: 1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--white);
}

/* Ajuste del grid para 4 columnas si decides mantener Soporte y Contacto */
@media (min-width: 992px) {
    .footer-main-content {
        grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr; /* Ajusta los anchos */
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-description {
        margin: 0 auto;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}