.footer {
    background: var(--primary-color); /* Verde principal */
    color: #fff;
    padding: 1.5rem 0 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-section {
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px);
}

.whatsapp:hover {
    background: #25D366;
}

.instagram:hover {
    background: #E1306C;
}

.tiktok:hover {
    background: #000;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.footer-contact h4, .footer-hours h4 {
    color: #fff;
    margin: 0.8rem 0 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-family: 'Boiling', sans-serif;
}

.footer-contact i, .footer-hours i {
    color: var(--secondary-color); /* Beige/marrón claro */
    font-size: 1rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-contact a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-hours p {
    margin: 0.4rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.footer-hours strong {
    color: #fff;
}

.footer-credits {
    text-align: center;
    padding: 1rem 0 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
}

.author {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(199, 152, 108, 0.5);
    animation: brillo 2s infinite alternate;
    font-family: 'Boiling', sans-serif;
}

@keyframes brillo {
    from {
        text-shadow: 0 0 5px rgba(199, 152, 108, 0.5),
                     0 0 10px rgba(199, 152, 108, 0.3);
    }
    to {
        text-shadow: 0 0 10px rgba(199, 152, 108, 0.8),
                     0 0 20px rgba(199, 152, 108, 0.6),
                     0 0 30px rgba(199, 152, 108, 0.4);
    }
}

.author:hover {
    color: var(--secondary-color);
    animation: brillo 0.5s infinite alternate;
}

.author::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary-color);
    transition: transform 0.3s ease;
    transform: scaleX(0);
}

.author:hover::after {
    transform: scaleX(1);
}

/* Responsive para tablet y laptop */
@media (min-width: 768px) {
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .footer-logo-section {
        text-align: left;
        border-bottom: none;
        padding-bottom: 0;
        flex: 1;
    }

    .footer-social {
        justify-content: flex-start;
        margin-top: 0.8rem;
    }

    .footer-info {
        grid-template-columns: 1fr 1fr;
        flex: 2;
        gap: 2rem;
    }

    .footer-contact, .footer-hours {
        text-align: left;
    }

    .footer-contact h4, .footer-hours h4 {
        justify-content: flex-start;
        font-size: 1.1rem;
    }
    
    .footer-contact a, .footer-hours p {
        font-size: 1rem;
    }
}

/* Ajustes adicionales para móviles pequeños */
@media (max-width: 480px) {
    .footer {
        padding: 1.2rem 0 0;
    }
    
    .footer-content {
        gap: 1.2rem;
    }
    
    .footer-logo {
        height: 55px;
        margin-bottom: 0.3rem;
    }
    
    .footer-social {
        gap: 0.6rem;
    }
    
    .footer-info {
        gap: 1.2rem;
    }
    
    .footer-credits {
        padding: 0.8rem 0 0.3rem;
    }
}