:root {
    --footer-bg-color: #2c3e50;
    --footer-text-color: #ecf0f1;
    --footer-link-color: #bdc3c7;
    --footer-link-hover-color: var(--primary-color);
    --footer-title-color: var(--color-fondo);
}

.main-footer-component {
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding: 2rem 1rem;
    font-size: 0.9rem;
}

.footer-container-component {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-section h5.footer-title {
    color: var(--footer-title-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--footer-link-color);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.footer-links a:hover {
    color: var(--footer-link-hover-color);
}

.footer-social-icon-img {
    width: 50px;
    height: 50px;
}   

.social-icons-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    color: var(--footer-text-color);
    font-size: 1.5rem;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.social-icon:hover {
    color: var(--footer-link-hover-color);
    transform: scale(1.1);
}

.footer-copyright-component {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
    font-size: 0.8rem;
    color: var(--footer-link-color);
}

/* Media Queries para Responsividad */
@media (width >= 768px) {
    .footer-container-component {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }

    .social-icons-container {
        justify-content: flex-start;
    }
}
