/* ============================================
   LA GRÁFICA TENERIFE - FOOTER STYLES
   ============================================ */

/* ============================================
   FOOTER GENERAL
   ============================================ */
.site-footer {
    background: #1A1A1A;
    color: #FFFFFF;
    padding-top: 60px;
}

/* ============================================
   SECCIÓN INFO - GRID
   ============================================ */
.footer-info {
    padding-bottom: 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* ============================================
   LOGO FOOTER
   ============================================ */
.footer-logo {
    margin-bottom: 20px;
}

.footer-custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

@media (max-width: 576px) {
    .footer-custom-logo {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   DESCRIPCIÓN
   ============================================ */
.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================
   TÍTULOS COLUMNAS
   ============================================ */
.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #00B4D8;
    margin: 0 0 20px 0;
}

.footer-titlecatalogs {
    margin-top: 30px;
}

/* ============================================
   LISTAS Y LINKS
   ============================================ */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00B4D8;
    transform: translateX(5px);
}

/* ============================================
   CONTACTO
   ============================================ */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list li i {
    width: 20px;
    margin-right: 12px;
    color: #00B4D8;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #00B4D8;
}

/* ============================================
   SECCIÓN COPYRIGHT
   ============================================ */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.copyright-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ============================================
   REDES SOCIALES
   ============================================ */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #00B4D8;
    transform: translateY(-3px);
}

/* ============================================
   LINKS LEGALES
   ============================================ */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00B4D8;
}

.legal-separator {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-title {
        margin-bottom: 15px;
    }

    .footer-links a:hover {
        transform: none;
    }

    .contact-list li {
        justify-content: center;
    }

    .contact-list li i {
        margin-top: 0;
    }

    .footer-social {
        gap: 15px;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   ANIMACIONES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
    .footer-column {
        animation: none;
        opacity: 1;
    }
}

/* Hover Effects */
.footer-links a {
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #00B4D8;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}