/* Estilos generales del footer */
.site-footer {
    position: relative;
    background: #2c3e50;
    color: #ecf0f1;
    padding: 0 0 0;
        
    left:1%;
    margin-top: 800px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
    position : center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5px;
    max-width: 2000px;
    margin-top: o;
    
    padding: 50px  50px;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #3498db;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #3498db;
}

/* Logo */
.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Iconos sociales */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ecf0f1;
    background: #34495e;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

/* Listas de enlaces */
.footer-links,
.contact-info,
.legal-links {
    list-style: none;
    padding: 0;
}

.footer-links li,
.legal-links li {
    margin-bottom: 10px;
}

.footer-links a,
.legal-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover,
.legal-links a:hover {
    color: #3498db;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* Copyright */
.copyright {
    background: #1a252f;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.copyright p {
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}