/* Estilos para el pie de página */
.site-footer {
    background-color: var(--color-primary-dark, #0a3a7d);
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.logo-with-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.club-title {
    margin: 0 0 0 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-nav h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent, #ffb300);
}

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

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

.footer-nav a,
.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--color-accent, #ffb300);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-social .social-links {
    display: flex;
    gap: 10px;
}

.footer-social .social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    transition: transform 0.3s, opacity 0.3s;
}

.footer-social .social-icon.facebook {
    background-color: #1877F2;
    background-image: url('../img/social/facebook-white.svg');
}

.footer-social .social-icon.instagram {
    background-color: #E4405F;
    background-image: url('../img/social/instagram-white.svg');
}

.footer-social .social-icon.twitter {
    background-color: #1DA1F2;
    background-image: url('../img/social/twitter-white.svg');
}

.footer-social .social-icon:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

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

/* Estilos responsive */
@media (max-width: 991px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-logo {
        grid-column: span 2;
        text-align: center;
    }
    
    .logo-with-title {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-content {
        gap: 25px;
    }
    
    .club-title {
        font-size: 1.1rem;
    }
    
    .footer-nav h4,
    .footer-contact h4,
    .footer-social h4 {
        font-size: 1.1rem;
    }
    
    .footer-nav h4::after,
    .footer-contact h4::after,
    .footer-social h4::after {
        width: 30px;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-logo {
        grid-column: 1;
    }
    
    .logo-with-title {
        flex-direction: column;
    }
    
    .club-title {
        margin: 10px 0 0;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom p {
        margin: 5px 0;
    }
}