/* Footer Styles */
.site-footer {
    margin-top: 60px;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 1rem;
    font-family: 'Roboto', sans-serif;
}

/* Zona de widgets del footer */
.footer-widgets {
    padding: 40px 0;
    background: #34495e;
    border-bottom: 1px solid #4a5f7a;
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Títulos de widgets del footer */
.footer-widget-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ecf0f1;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    display: inline-block;
}

/* Contenido de widgets del footer */
.footer-widget {
    margin-bottom: 30px;
}

.footer-widget:last-child {
    margin-bottom: 0;
}

.footer-widget p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #bdc3c7;
    font-size: 0.9rem;
}

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

.footer-widget li {
    margin-bottom: 8px;
    padding-left: 0;
}

.footer-widget a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-widget a:hover {
    color: #3498db;
}

/* Línea de copyright */
.footer-bottom {
    padding: 20px 0;
    background: #2c3e50;
    text-align: center;
}

.footer-copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.footer-copyright a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 600;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Responsive para footer */
@media (max-width: 768px) {
    .footer-widgets-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-widgets {
        padding: 30px 0;
    }
    
    .footer-widget-title {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .footer-widget {
        margin-bottom: 24px;
    }
    
    .footer-bottom {
        padding: 16px 0;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-widgets {
        padding: 24px 0;
    }
    
    .footer-widgets-grid {
        gap: 24px;
        padding: 0 16px;
    }
    
    .footer-widget-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-widget {
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        padding: 12px 0;
    }
    
    .container {
        padding: 0 16px;
    }
}

.footer-widgets-container .widget-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.footer-widgets-container ul li {
    margin-bottom: 0.75rem;
}
