/* Estilos del Footer */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 70px 30px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 380px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-brand p {
    margin-bottom: 20px;
    color: #aaa;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

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

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: #888;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 1366px) {
    .site-footer {
        padding: 50px 15px 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.1rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .site-footer {
        padding: 45px 12px 18px;
    }

    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 1rem;
    }

    .footer-contact p {
        font-size: 0.85rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
    }
    
    .site-footer {
        padding: 60px 25px 25px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .site-footer {
        padding: 50px 20px 20px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links ul,
    .footer-contact {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 40px 15px 15px;
    }

    .footer-grid {
        gap: 25px;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .footer-contact p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 25px;
    }
}

@media (max-width: 400px) {
    .site-footer {
        padding: 35px 10px 10px;
    }

    .footer-logo {
        font-size: 1.2rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 1rem;
    }

    .footer-links ul li a,
    .footer-contact p {
        font-size: 0.85rem;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}
