/* Estilos completos para el Footer */
.site-footer {
    background-color: #333333;
    color: #ffffff;
    padding: 40px 0 0 0;
}

/* Contenedor principal del footer */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Columnas del footer */
.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding-right: 20px;
}

/* Títulos de las columnas */
.footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: #ffffff;
}

/* Listas de enlaces */
.footer-links, 
.footer-contact, 
.footer-social {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links li, 
.footer-contact li, 
.footer-social li {
    margin-bottom: 10px;
}

/* Formato de enlaces */
.footer-links a, 
.footer-social a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.footer-links a:hover, 
.footer-social a:hover {
    color: #cccccc;
}

/* Iconos del footer */
.footer-icon {
    display: inline-block;
    margin-right: 10px;
    color: #ffffff;
    font-weight: bold;
}

/* Alineación de íconos en contacto */
.footer-contact li {
    display: flex;
    align-items: center;
}

/* Copyright simple - línea inferior */
.footer-copyright {
    background-color: #222222;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

/* Estilo específico para iconos de redes sociales */
.footer-social svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    fill: currentColor;
}

/* Estilo para el icono de flecha "›" en los enlaces */
.footer-links .footer-icon {
    font-size: 18px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-column {
        flex: 0 0 calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .footer-column {
        flex: 0 0 100%;
        padding-right: 0;
    }
    
    .footer-content {
        padding: 0 15px;
    }
}