/* Estilos para el footer del sitio */

.site-footer {
    background-color: #1A1A1A;
    color: #F5F5F5;
    position: relative;
    z-index: 10;
}

/* Parte superior del footer */
.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Logo y tagline */
.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo a {
    text-decoration: none;
}

.footer-logo h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: #F5F5F5;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--color-ochre);
}

.footer-tagline {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #C19A6B;
    margin-top: 5px;
}

/* Navegación */
.footer-nav h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: #F5F5F5;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-nav h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-ochre);
}

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

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

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-ochre);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-ochre);
    padding-left: 20px;
}

.footer-links a:hover::before {
    left: 5px;
}

/* Redes sociales */
.footer-social h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: #F5F5F5;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-ochre);
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333333;
    color: #F5F5F5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--color-ochre);
    transform: translateY(-5px);
}

.social-icon i {
    font-size: 1.2rem;
}

/* Parte inferior del footer */
.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.copyright {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: #999999;
    margin: 0;
}

.credits {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: #999999;
    margin: 0;
}

.credits a {
    color: var(--color-ochre);
    text-decoration: none;
    transition: all 0.3s ease;
}

.credits a:hover {
    color: #F5F5F5;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-logo h2 {
        margin: 0 auto 10px;
    }
    
    .footer-nav h3::after,
    .footer-social h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-nav,
    .footer-social {
        text-align: center;
    }
    
    .footer-links a {
        padding-left: 0;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon i {
        font-size: 1rem;
    }
}
