/* Footer Styles */
@import 'variables.css';

/*.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

    .footer-section a:hover {
        color: #ffffff;
        text-decoration: underline;
    }

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.social-list {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: background-color 0.2s;
}

    .social-icon:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .footer-title {
        cursor: default;
    }
}*/
/* Estilo para el footer */
/*.m-footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

    .m-footer a {
        color: #fff;
        text-decoration: none;
        margin: 0 10px;
    }

        .m-footer a:hover {
            color: #ff6347;
        }

    .m-footer .social-icons {
        margin-top: 10px;
    }

        .m-footer .social-icons a {
            margin: 0 5px;
            font-size: 20px;
        }*/

.footer-background {
    background-color: var(--secondary-color);
}