/* Footer Premium Base */
.footer-premium-section {
    background: linear-gradient(135deg, #0c1426 0%, #1a2332 25%, #2d3748 50%, #1a2332 75%, #0c1426 100%);
    color: white;
    padding: 3rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 0rem;
}

.footer-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Brand Section Premium */
.footer-brand-section {
    padding-right: 1rem;
}

.brand-container {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.logo-glow-wrapper {
    position: relative;
}

.footer-logo {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.5));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(0, 123, 255, 0.8));
}.brand-text {
    flex: 1;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #17a2b8;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #17a2b8 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-style: italic;
}

.brand-description p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.highlight-text {
    color: #17a2b8;
    font-weight: 600;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, currentColor, transparent);
    opacity: 0.6;
}

/* Social Media Premium */
.social-media-premium {
    margin-top: 2rem;
}

.social-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateX(8px);
    color: white;
    text-decoration: none;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(253, 29, 29, 0.2));
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.2);
}

.social-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.social-link.email:hover {
    background: rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.social-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.social-icon-wrapper i {
    font-size: 1.2rem;
    z-index: 2;
}.social-link:hover.social-label {
    font-weight: 500;
    flex: 1;
}

/* Footer Links Section */
.footer-links-section {
    padding: 0 1rem;
}

.section-header {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff, #17a2b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.section-title {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 1.3rem;
    flex: 1;
}

.title-underline {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #17a2b8);
    border-radius: 2px;
    margin-left: auto;
}

.quick-links-grid {
    display: grid;
    gap: 0.5rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.quick-link:hover {
    color: white;
    text-decoration: none;
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.link-icon {
    width: 35px;
    height: 35px;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17a2b8;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quick-link:hover .link-icon {
    background: rgba(0, 123, 255, 0.3);
    transform: scale(1.1);
}

.link-text {
    flex: 1;
    font-weight: 500;
}

.link-arrow {
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.quick-link:hover .link-arrow {
    color: #17a2b8;
    transform: translateX(3px);
}

/* Contact Section Premium */
.footer-contact-section {
    padding-left: 1rem;
}

.contact-info-premium {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #17a2b8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}.contact-content {
    flex: 1;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-value {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
    display: block;
}

.contact-value:hover {
    color: #17a2b8;
    text-decoration: none;
}

.location-link:hover {
    color: #28a745;
}

.phone-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.call-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: all 0.3s ease;
}

.phone-link:hover .call-indicator {
    opacity: 1;
}

.schedule-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.days {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hours {
    color: #17a2b8;
    font-weight: 600;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(40, 167, 69, 0.2);
    color: #20c997;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.open i {
    animation: statusPulse 2s ease-in-out infinite;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
}

.copyright-info {
    text-align: center;
}

.copyright-main {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.copyright-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.legal-link:hover {
    color: #17a2b8;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-premium-section {
        padding: 4rem 0 2rem 0;
    }

    .brand-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand-section,
    .footer-links-section,
    .footer-contact-section {
        padding: 0;
    }

    .social-links {
        max-width: 300px;
        margin: 0 auto;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        align-self: center;
    }

    .schedule-row {
        justify-content: center;
        gap: 1rem;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
    }

    .brand-title {
        font-size: 1.3rem;
    }
}

/* Estilos adicionales para estados de negocio */
.status-badge.closed {
    background: rgba(220, 53, 69, 0.2) !important;
    color: #dc3545 !important;
    border: 1px solid rgba(220, 53, 69, 0.3) !important;
}

.status-badge.opening-soon {
    background: rgba(255, 193, 7, 0.2) !important;
    color: #ffc107 !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

.status-badge.open {
    background: rgba(40, 167, 69, 0.2) !important;
    color: #20c997 !important;
    border: 1px solid rgba(40, 167, 69, 0.3) !important;
}
