/* --- FOOTER GLOBAL --- */
footer {
    position: relative;
    background: rgba(3, 0, 5, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 8% 24px;
    margin-top: 40px;
    color: white;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand .logo {
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand .logo span {
    color: var(--led-blue, #00f2ff);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.footer-brand p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    max-width: 300px;
}

.footer-section h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--led-blue, #00f2ff);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.75rem;
    color: #555;
}

.footer-bottom b {
    color: #777;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: white;
    font-size: 1.2rem;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.footer-socials a:hover {
    opacity: 1;
    color: var(--led-blue, #00f2ff);
    transform: translateY(-3px) scale(1.1);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 20px;
    border: 1px solid var(--led-blue, #00f2ff);
    border-radius: 8px;
    color: var(--led-blue, #00f2ff);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-cta:hover {
    background: rgba(0, 242, 255, 0.08);
    box-shadow: 0 0 16px rgba(0, 242, 255, 0.25);
    gap: 12px;
}

.footer-hours {
    margin-top: 14px;
}

.footer-hours p {
    font-size: 0.78rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.footer-hours i {
    color: var(--led-blue, #00f2ff);
    font-size: 0.7rem;
    opacity: 0.7;
}

.footer-social-note {
    margin-top: 14px;
    font-size: 0.78rem;
    color: #555;
    line-height: 1.5;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    footer {
        padding: 36px 5% 16px;
        margin-top: 24px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links a {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-social-note {
        text-align: left;
    }

    .footer-hours p {
        justify-content: flex-start;
    }
}

/* ==========================================
   COOKIES BANNER PREMIUM & OVERLAY
   ========================================== */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cookie-overlay.show {
    display: block;
    opacity: 1;
}

body.no-scroll {
    overflow: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(176, 38, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(176, 38, 255, 0.2);
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content h4 {
    color: #b026ff;
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.cookie-content p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #00f2ff;
    text-decoration: none;
    font-weight: 700;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.btn-accept {
    background: #b026ff;
    color: white;
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.4);
}

.btn-accept:hover {
    background: #c75cff;
    box-shadow: 0 0 25px rgba(176, 38, 255, 0.6);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (min-width: 768px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        max-width: 800px;
        left: 50%;
        transform: translate(-50%, 150%);
    }

    .cookie-banner.show {
        transform: translate(-50%, 0);
    }

    .cookie-actions {
        min-width: 300px;
    }
}