/* =========================================
   STYLE-GLOBAL.CSS
   (Fonts, Variables, Nav, Footer, Cursor)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary: #5b21b6;       
    --primary-hover: #7c3aed;
    --accent: #22d3ee;        
    --bg-color: #050505;      
    --text-color: #ffffff;    
    --card-bg: rgba(255, 255, 255, 0.03);       
    --border-color: rgba(255, 255, 255, 0.1);  
    --nav-bg: rgba(20, 20, 20, 0.6);
    --grain: url('https://grainy-gradients.vercel.app/noise.svg');
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; }
input, textarea, button, select, a { cursor: none; } 

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .logo { font-family: 'Syne', sans-serif; }

/* --- CINEMATIC GRAIN --- */
.grain-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: var(--grain); opacity: 0.05; pointer-events: none; z-index: 9998;
}

/* --- CUSTOM CURSOR --- */
.cursor {
    width: 20px; height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 10000;
    transform: translate(-50%, -50%);
    transition: left 0.1s ease, top 0.1s ease, transform 0.2s ease;
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 4px; height: 4px; background: white; border-radius: 50%;
    position: fixed; pointer-events: none; z-index: 10001;
    transform: translate(-50%, -50%);
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 900px; background: var(--nav-bg);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color); padding: 0.8rem 2rem;
    border-radius: 50px; z-index: 9999;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { font-size: 1.2rem; font-weight: 800; letter-spacing: -1px; color: var(--text-color); z-index: 1002; }
.logo a { text-decoration: none; color: inherit; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-color); opacity: 0.7; font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { opacity: 1; color: var(--accent); }

.hamburger { display: none; font-size: 1.4rem; cursor: pointer; color: var(--text-color); z-index: 1002; }

/* Buttons */
.cta-btn { 
    background: white; color: black !important; padding: 0.6rem 1.4rem; border-radius: 30px; font-weight: 700; text-decoration: none; transition: transform 0.2s;
}
.cta-btn:hover { transform: scale(1.05); }

.btn-pill { padding: 0.8rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: 0.3s; font-size: 0.9rem; display: inline-block; cursor: pointer;}
.btn-solid { background: var(--text-color); color: var(--bg-color); }
.btn-outline { border: 1px solid var(--border-color); color: var(--text-color); background: transparent; }
.btn-pill:hover { transform: scale(1.05); }

/* --- FOOTER --- */
.contact-section-modern {
    padding: 6rem 5%; text-align: center; border-top: 1px solid var(--border-color); margin-top: 4rem;
}
.contact-grid-modern {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
    max-width: 1200px; margin: 3rem auto;
}
.contact-card-modern {
    background: var(--card-bg); border: 1px solid var(--border-color); padding: 3rem 1.5rem;
    border-radius: 20px; text-align: center; text-decoration: none; color: var(--text-color);
    transition: 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.contact-card-modern:hover { transform: translateY(-5px); background: rgba(255,255,255,0.05); border-color: var(--accent); }

.c-icon { font-size: 2rem; margin-bottom: 1rem; opacity: 0.8; }
.c-whatsapp:hover .c-icon { color: #25D366; opacity: 1; }
.c-insta:hover .c-icon { color: #E1306C; opacity: 1; }
.c-email:hover .c-icon { color: #EA4335; opacity: 1; }
.c-label { font-weight: 700; margin-bottom: 0.5rem; }
.c-action { font-size: 0.8rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 1px; }
.footer-copy { margin-top: 4rem; opacity: 0.4; font-size: 0.8rem; }

/* --- MOBILE GLOBAL --- */
@media (max-width: 768px) {
    .navbar { width: 92%; padding: 0.8rem 1rem; }
    .hamburger { display: block; }
    .nav-links {
        position: fixed; top: 80px; right: -100%; width: 92%; background: rgba(10,10,10,0.95);
        flex-direction: column; padding: 2rem; border-radius: 20px; transition: 0.4s;
    }
    .nav-links.active { right: 4%; }
    .cursor, .cursor-dot { display: none; }
    * { cursor: auto; }
}