/* ═══════════════════════════════════════════════════════════
   GCN-CORE.CSS — Design System Unificado (FINAL)
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --marsala: #e11d48; --marsala-glow: rgba(225, 29, 72, 0.4);
  --azul-neon: #3b82f6; --roxo: #7c3aed;
  --verde: #25d366; --verde-glow: rgba(37, 211, 102, 0.5);
  --bg-primary: #020617; --bg-secondary: #0f172a;
  --text-primary: #f8fafc; --text-secondary: #e2e8f0; --text-muted: #64748b; --text-dim: #475569;
  --glass-bg: rgba(30, 41, 59, 0.6); --glass-border: rgba(255, 255, 255, 0.08); --glass-blur: 16px;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --radius-lg: 20px; --radius-xl: 28px;
  --font-display: 'Inter', system-ui, sans-serif; --font-body: 'Inter', system-ui, sans-serif;
}

body {
  font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary);
  line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

.container { width: 100% !important; max-width: 1280px !important; margin: 0 auto !important; padding: 0 1.5rem !important; }

.glass-card { background: var(--glass-bg) !important; backdrop-filter: blur(var(--glass-blur)) !important; -webkit-backdrop-filter: blur(var(--glass-blur)) !important; border: 1px solid var(--glass-border) !important; border-radius: var(--radius-xl) !important; transition: all 0.4s ease !important; position: relative; overflow: hidden; }
.glass-card:hover { border-color: rgba(225, 29, 72, 0.3) !important; transform: translateY(-6px) !important; box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important; }

/* ═══════════════ ALINHAMENTO DIVINO DOS BOTÕES ═══════════════ */
.whatsapp-float, .anydesk-float {
  position: fixed !important; right: 28px !important; z-index: 9999 !important;
  width: 56px !important; height: 56px !important; border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  transition: all 0.3s ease !important; text-decoration: none !important;
}

.whatsapp-float {
  bottom: 28px !important; background: var(--verde) !important;
  box-shadow: 0 8px 28px var(--verde-glow) !important;
  animation: wpp-pulse 2.5s ease-in-out infinite !important;
}
.whatsapp-float i { font-size: 30px !important; color: white !important; }

.anydesk-float {
  bottom: 100px !important; background: rgba(239, 59, 45, 0.15) !important;
  backdrop-filter: blur(10px) !important; border: 2px solid rgba(239, 59, 45, 0.4) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5) !important; cursor: pointer !important;
}
.anydesk-float img { width: 26px !important; height: 26px !important; }
.anydesk-float:hover { background: rgba(239, 59, 45, 0.3) !important; border-color: rgba(239, 59, 45, 0.7) !important; transform: scale(1.08) !important; }

@keyframes wpp-pulse { 0%, 100% { box-shadow: 0 8px 28px var(--verde-glow); } 50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7); } }

/* ═══════════════ MENU HAMBURGER (MOBILE) ═══════════════ */
.gcn-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; padding: 4px; background: none; border: none; }
.gcn-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s ease; }
.gcn-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.gcn-hamburger.active span:nth-child(2) { opacity: 0; }
.gcn-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.gcn-nav-links { display: flex; align-items: center; gap: 24px; }

@media (max-width: 900px) {
  .gcn-hamburger { display: flex; }
  .gcn-nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: rgba(2, 6, 23, 0.98); backdrop-filter: blur(30px);
    flex-direction: column; padding: 100px 30px 40px; gap: 20px;
    transition: right 0.3s ease; border-left: 1px solid rgba(255, 255, 255, 0.06); z-index: 1000;
  }
  .gcn-nav-links.active { right: 0; }
  .gcn-nav-links a, .gcn-nav-links button { font-size: 0.85rem !important; }
  .whatsapp-float, .anydesk-float { right: 20px !important; width: 48px !important; height: 48px !important; }
  .anydesk-float { bottom: 85px !important; }
  .whatsapp-float { bottom: 20px !important; }
  .whatsapp-float i { font-size: 24px !important; }
  .anydesk-float img { width: 22px !important; height: 22px !important; }
}

/* ═══════════════════════════════════════════════════════════
   AJUSTES MOBILE FINAIS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .anydesk-float { display: none !important; }
  
  .carousel-arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .carousel-arrow-left { left: 4px !important; }
  .carousel-arrow-right { right: 4px !important; }
}

/* ═══════════════════════════════════════════════════════════
   CORREÇÃO MENU MOBILE - TODAS AS PÁGINAS
   ═══════════════════════════════════════════════════════════ */
.gcn-nav-links { display: flex !important; }
@media (max-width: 900px) {
  .gcn-nav-links { 
    display: flex !important;
    position: fixed; top: 0; right: -100%; 
    width: 280px; height: 100vh; 
    background: rgba(2,6,23,0.98); backdrop-filter: blur(30px);
    flex-direction: column; padding: 100px 30px 40px; gap: 20px;
    transition: right 0.3s ease; 
    border-left: 1px solid rgba(255,255,255,0.06); z-index: 1000;
  }
  .gcn-nav-links.active { right: 0; }
}

