/* =========================================
   FRAMER-STYLE HIGH IMPACT CSS SYSTEM
   ========================================= */

:root {
    --bg-deep: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-light: rgba(255, 255, 255, 0.08);
    --accent-cyan: #06b6d4;
    --accent-purple: #a855f7;
    --accent-green: #22c55e;
    --glass-blur: blur(20px);
}

/* SCROLL ANIMATIONS */
.framer-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.framer-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* UTILS */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-light);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-cyan {
    background: linear-gradient(90deg, #06b6d4, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== MASSIVE FOOTER ========== */
.framer-footer {
    position: relative;
    background: #000;
    padding: 6rem 1rem 8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.framer-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #06b6d4, #a855f7, transparent);
    animation: shimmy 3s linear infinite;
}

@keyframes shimmy {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #06b6d4 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-col h3.col-prod { color: #06b6d4; }
.footer-col h3.col-comp { color: #a855f7; }
.footer-col h3.col-leg { color: #22c55e; }

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.2rem;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.5);
}

.sb-insta { background: rgba(236, 72, 153, 0.1); border: 1px solid rgba(236, 72, 153, 0.2); }
.sb-insta:hover { background: #ec4899; }

.sb-link { background: rgba(6, 182, 212, 0.1); border: 1px solid rgba(6, 182, 212, 0.2); }
.sb-link:hover { background: #06b6d4; }

.sb-wa { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.2); }
.sb-wa:hover { background: #22c55e; }

/* GIANT ZYLO FINALE */
.giant-zylo-section {
    position: relative;
    background: #000;
    padding: 5rem 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.huge-text-logo {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(8rem, 25vw, 22rem);
    font-weight: 900;
    line-height: 0.8;
    background: linear-gradient(180deg, rgba(6,182,212,0.5) 0%, rgba(168,85,247,0.3) 50%, rgba(6,182,212,0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
    letter-spacing: -0.05em;
    user-select: none;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.finale-tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.finale-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 60%;
    background: radial-gradient(ellipse at bottom, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* AURORA BACKGROUND */
.aurora-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(6,182,212,0.1), transparent 50%),
                radial-gradient(circle at 0% 0%, rgba(168,85,247,0.15), transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(34,197,94,0.1), transparent 50%);
    animation: aurora-spin 20s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes aurora-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-button-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,255,255,0.3);
}
