/* ═══════════════════════════════════════════════
   CSS VARIABLES & RESET
═══════════════════════════════════════════════ */
:root {
  --bg: #0A0A0A;
  --bg2: #111111;
  --surface: #111111;
  --surface2: #1A1A1A;
  --ink: #FFFFFF;
  --ink2: #B3B3B3;
  --ink3: #888888;
  --accent: #00D4C7;
  --accent2: #00BFFF;
  --accent-glow: rgba(0, 212, 199, 0.25);
  --border: #2A2A2A;
  --border-strong: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.6);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --gradient: linear-gradient(135deg, #00D4C7 0%, #00BFFF 100%);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Custom Cursor */
@media (min-width: 1025px) {
  .cursor {
    position: fixed; pointer-events: none; z-index: 99999;
    width: 10px; height: 10px;
    background: #00D4C7;
    border-radius: 50%;
    top: 0; left: 0;
    transition: width .2s, height .2s, opacity .2s;
    box-shadow: 0 0 8px rgba(0, 212, 199, 0.8);
  }
  .cursor-ring {
    position: fixed; pointer-events: none; z-index: 99998;
    width: 36px; height: 36px;
    border: 1.5px solid #00D4C7;
    border-radius: 50%;
    top: 0; left: 0;
    opacity: 0.6;
  }
  body { cursor: none; }
  a, button, [role=button] { cursor: none; }
  .cursor.hover { width: 20px; height: 20px; opacity: 0.7; }
  .cursor-ring.hover { width: 56px; height: 56px; opacity: 0.3; }
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════ */
.display-xl { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 800; line-height: 1.0; letter-spacing: -0.03em; }
.display-lg { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.display-md { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.label { font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.body-lg { font-size: 1.15rem; color: var(--ink2); line-height: 1.75; }
.body-md { font-size: 1rem; color: var(--ink3); line-height: 1.7; }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-40px) scale(1.03); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════ */
header {
  position: fixed; top: 1.5rem; left: 0; right: 0; z-index: 2000;
  padding: 0 5%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
header.scrolled { top: 0.75rem; }
.nav-container {
  max-width: 1200px; width: 95%; margin: 0 auto;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.4rem 0.4rem 0.4rem 1.8rem;
  display: flex; align-items: center; justify-content: space-between;
  pointer-events: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
header.scrolled .nav-container { background: rgba(10, 10, 10, 0.95); border-color: rgba(0, 212, 199, 0.3); }
.nav-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--ink); display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nav-logo-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 15px var(--accent); }
nav { display: flex; align-items: center; gap: 0.2rem; flex: 1; justify-content: center; }
nav a { font-size: 0.65rem; font-weight: 700; color: var(--ink2); padding: 0.5rem 0.7rem; border-radius: 100px; transition: all 0.2s ease; text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; position: relative; }
nav a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.05); }
nav a.active { color: var(--accent); background: rgba(0, 212, 199, 0.08); }
nav a.active::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 6px var(--accent); }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-cta { padding: 0.75rem 1.5rem; background: var(--gradient); color: #000 !important; border-radius: 100px; font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; transition: all 0.3s ease !important; }
.nav-cta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 25px rgba(0, 212, 199, 0.4) !important; }

/* Hamburger */
.hamburger { display: none; width: 44px; height: 44px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; transition: all 0.3s ease; position: relative; z-index: 1100; }
.hamburger:hover { border-color: var(--accent); background: rgba(0, 212, 199, 0.1); }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 10px; transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6); display: block; }
.hamburger.open { background: var(--gradient); border-color: transparent; transform: scale(1.1); box-shadow: 0 0 20px var(--accent); }
.hamburger.open span { background: #000; height: 2.5px; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); width: 24px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scale(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); width: 24px; }
header.menu-open .nav-cta { opacity: 0 !important; visibility: hidden !important; }
header.menu-open .nav-container { background: transparent !important; border-color: transparent !important; box-shadow: none !important; backdrop-filter: none !important; }
header.menu-open .nav-logo { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #0A0A0A; z-index: 1500; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); transform: translateY(-20px); }
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: #fff; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: -0.02em; text-align: center; width: 100%; padding: 0 1.5rem; }
.mobile-menu a:hover { color: var(--accent); transform: scale(1.1); }

/* ═══════════════════════════════════════════════
   SECTIONS COMMON
═══════════════════════════════════════════════ */
section { padding: 7rem 5%; }
.container { max-width: 1300px; margin: 0 auto; }
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }

/* Fade in animation */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero { min-height: 100vh; display: flex; align-items: center; padding-top: 7rem; position: relative; overflow: hidden; background: var(--bg); max-width: 100%; }
.hero-blob { position: absolute; top: -20%; right: -10%; width: 800px; height: 800px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); pointer-events: none; animation: float 8s ease-in-out infinite; overflow: hidden; }
.hero-tag { display: inline-flex; align-items: center; gap: .6rem; padding: .45rem 1rem; background: var(--accent-glow); border: 1px solid rgba(96,165,250,0.3); border-radius: 100px; margin-bottom: 1.8rem; }
.hero-tag-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.8rem; background: var(--gradient); color: #fff; border-radius: 10px; font-weight: 600; font-size: .93rem; transition: all var(--transition); box-shadow: 0 4px 20px var(--accent-glow); border: none; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 212, 199, 0.4); }
.btn-outline { display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.8rem; background: transparent; color: var(--ink2); border-radius: 10px; font-weight: 600; font-size: .93rem; border: 1.5px solid var(--border-strong); transition: all var(--transition); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.btn-secondary { display: inline-flex; align-items: center; gap: .6rem; padding: .85rem 1.8rem; background: rgba(255, 255, 255, 0.05); color: var(--ink); border-radius: 100px; font-weight: 700; font-size: .93rem; border: 1px solid var(--border); transition: all var(--transition); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--accent); }

/* ═══════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════ */
.marquee-section { padding: 2.5rem 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; max-width: 100%; }
.marquee-track { display: flex; gap: 4rem; animation: marquee 20s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { white-space: nowrap; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink3); display: flex; align-items: center; gap: .8rem; transition: color var(--transition); }
.marquee-item:hover { color: var(--ink); }
.marquee-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }

/* ═══════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════ */
#cta-final { background: var(--bg2); padding: 7rem 5%; text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 700px; height: 700px; background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%); pointer-events: none; }
.cta-inner { position: relative; z-index: 2; }
.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 4rem); font-weight: 800; color: var(--ink); line-height: 1.1; letter-spacing: -0.02em; max-width: 800px; margin: 0 auto 1.5rem; }
.cta-sub { color: var(--ink3); font-size: 1.1rem; margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   CATEGORIES
═══════════════════════════════════════════════ */
#categorias { background: var(--bg); position: relative; }
#categorias::before { content: ''; position: absolute; top: 10%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0, 212, 199, 0.03) 0%, transparent 70%); pointer-events: none; }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; position: relative; z-index: 1; }
.category-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.category-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: var(--shadow-lg); }
.card-image-container { position: relative; height: 200px; overflow: hidden; }
.category-image { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.category-card:hover .category-image { transform: scale(1.06); }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.8) 100%); }
.category-icon { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; color: #000; box-shadow: 0 4px 20px var(--accent-glow); }
.category-content { padding: 1.75rem; }
.category-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: .6rem; color: var(--ink); }
.category-description { font-size: .9rem; color: var(--ink3); margin-bottom: 1.2rem; line-height: 1.65; }
.category-types { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.type-badge { font-family: var(--font-display); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: .4rem .85rem; border-radius: 100px; background: var(--accent-glow); color: var(--accent); border: 1px solid rgba(0,212,199,0.2); }
.category-cta { display: flex; gap: .6rem; }
.btn-demo, .btn-contact { flex: 1; padding: .8rem 1rem; border-radius: 10px; font-weight: 700; font-size: .8rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: .4rem; transition: all var(--transition); }
.btn-demo { background: var(--gradient); color: #000; box-shadow: 0 4px 16px var(--accent-glow); }
.btn-demo:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--accent-glow); }
.btn-contact { background: transparent; border: 1.5px solid var(--border-strong); color: var(--ink2); }
.btn-contact:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.subcategories { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: .75rem; margin-bottom: 1rem; }
.subcategory-item { display: flex; justify-content: space-between; align-items: center; padding: .7rem .85rem; background: var(--surface); border-radius: 8px; margin-bottom: .6rem; transition: background var(--transition); }
.subcategory-item:last-child { margin-bottom: 0; }
.subcategory-item:hover { background: var(--accent-glow); }
.subcategory-name { font-size: .82rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: .5rem; }
.subcategory-name i { color: var(--accent); }
.subcategory-btn { font-size: .72rem; font-weight: 800; padding: .45rem .9rem; border-radius: 100px; background: var(--gradient); color: #000; text-transform: uppercase; letter-spacing: .03em; transition: all var(--transition); }
.subcategory-btn:hover { transform: scale(1.05); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 4rem 5% 2.5rem; }
.footer-inner { max-width: 1300px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand-desc { font-size: .87rem; color: var(--ink3); line-height: 1.7; margin-bottom: 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: .75rem; }
.social-btn { width: 38px; height: 38px; border: 1px solid var(--border-strong); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--ink3); transition: all var(--transition); }
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.footer-col h4 { font-family: var(--font-display); font-size: .85rem; font-weight: 700; letter-spacing: .05em; margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { font-size: .85rem; color: var(--ink3); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .82rem; color: var(--ink3); }
.footer-copy a { color: var(--accent); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8rem; color: var(--ink3); transition: color var(--transition); }
.footer-legal a:hover { color: var(--ink); }

/* ═══════════════════════════════════════════════
   MOBILE BOTTOM BAR
═══════════════════════════════════════════════ */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--surface); border-top: 1px solid var(--border); padding: .75rem 1rem; display: none; gap: .75rem; z-index: 500; box-shadow: 0 -8px 30px rgba(0,0,0,0.1); }
.mobile-bar a { flex: 1; padding: .75rem .5rem; display: flex; align-items: center; justify-content: center; gap: .5rem; border-radius: 8px; font-weight: 600; font-size: .82rem; transition: all var(--transition); }
.mobile-bar .mb-whatsapp { background: #25D366; color: #fff; }
.mobile-bar .mb-cta { background: var(--accent); color: #fff; }

/* ═══════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════ */
.back-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--accent); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition); z-index: 400; box-shadow: 0 4px 20px var(--accent-glow); }
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); }

/* ═══════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════ */
.cookie-banner { position: fixed; bottom: 2rem; right: 2rem; transform: translateX(120%); width: 380px; background: rgba(15, 15, 15, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 1.5rem; z-index: 3000; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 20px 50px rgba(0,0,0,0.6); }
.cookie-banner.visible { transform: translateX(0); }
.cookie-inner { display: flex; flex-direction: column; gap: 1.25rem; }
.cookie-text { font-size: 0.85rem; color: #bbb; line-height: 1.5; }
.cookie-text strong { color: #fff; display: flex; align-items: center; gap: 8px; font-size: 1rem; margin-bottom: 0.4rem; }
.cookie-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.cookie-btn { width: 100%; padding: 0.75rem; border-radius: 10px; font-size: 0.75rem; font-weight: 800; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.05em; text-align: center; cursor: pointer; }
.cookie-btn.accept { background: var(--gradient); color: #000; border: none; }
.cookie-btn.secondary { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); color: #eee; }
.cookie-btn:hover { filter: brightness(1.2); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════
   LANGUAGE SWITCHER
═══════════════════════════════════════════════ */
.lang-switcher { position: relative; flex-shrink: 0; }
.lang-btn { width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; line-height: 1; transition: all var(--transition); overflow: hidden; cursor: pointer; }
.lang-btn:hover { border-color: var(--accent); background: var(--accent-glow); box-shadow: 0 4px 20px var(--accent-glow); transform: translateY(-2px) scale(1.05); }
.lang-switcher.open .lang-btn { border-color: var(--accent); background: var(--accent-glow); box-shadow: 0 0 0 4px var(--accent-glow); }
.lang-dropdown { position: absolute; top: calc(100% + 0.8rem); right: 0; min-width: 180px; max-height: 320px; overflow-y: auto; background: rgba(10, 10, 10, 0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-strong); border-radius: 16px; padding: 0.45rem; box-shadow: 0 20px 50px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transform: translateY(-8px) scale(0.96); transform-origin: top right; transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1); z-index: 10; }
.lang-switcher.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang-option { width: 100%; display: flex; align-items: center; gap: 0.65rem; padding: 0.65rem 0.8rem; border-radius: 10px; font-size: 0.85rem; font-weight: 600; color: var(--ink2); transition: all 0.2s ease; text-align: left; cursor: pointer; border: none; background: transparent; }
.lang-option:hover { background: rgba(255,255,255,0.06); color: var(--ink); }
.lang-option.active { color: var(--accent); background: var(--accent-glow); }
.lang-flag, .lang-flag-current { display: inline-flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.lang-flag svg, .lang-flag-current svg { width: 100%; height: 100%; display: block; }
.lang-flag-current { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); }
.lang-flag { width: 22px; height: 16px; border-radius: 3px; border: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 1150px) { .lang-switcher { order: -1; } }
.lang-dropdown::-webkit-scrollbar { width: 5px; }
.lang-dropdown::-webkit-scrollbar-track { background: transparent; }
.lang-dropdown::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1150px) { nav { display: none; } .hamburger { display: flex; } .nav-cta { display: none; } }
@media (max-width: 1024px) { section { padding: 6rem 5%; } .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 900px) { section { padding: 5rem 5%; } .nav-container { padding: 0.4rem 0.4rem 0.4rem 1.2rem; } .display-lg { font-size: clamp(1.9rem, 4.5vw, 3.5rem); } .display-md { font-size: clamp(1.6rem, 3vw, 2.5rem); } }
@media (max-width: 768px) { section { padding: 4.5rem 4%; } #hero { padding-top: 6rem; } .hero-actions { flex-direction: column; align-items: center; } .hero-actions a { width: 100%; max-width: 320px; justify-content: center; } .categories-grid { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr; } .mobile-bar { display: flex; } .back-top { bottom: 5.5rem; right: 1rem; } .footer-bottom { flex-direction: column; text-align: center; } .footer-legal { flex-wrap: wrap; justify-content: center; } .footer-brand-desc { max-width: 100%; } .marquee-item { font-size: 0.95rem; } .cta-actions { flex-direction: column; align-items: center; } .cta-actions a { width: 100%; max-width: 320px; justify-content: center; } .category-cta { flex-direction: column; } }
@media (max-width: 640px) { section { padding: 4rem 4%; } .nav-container { padding: 0.35rem 0.35rem 0.35rem 1rem; } .nav-logo { font-size: 0.95rem; } .display-lg { font-size: clamp(1.7rem, 7vw, 2.8rem); } .footer-social { gap: 0.5rem; } }
@media (max-width: 480px) { section { padding: 3.5rem 4%; } .cookie-banner { right: 4%; left: 4%; width: 92%; bottom: 1rem; } #hero { padding-top: 5.5rem; min-height: auto; padding-bottom: 3rem; } .display-lg { font-size: clamp(1.6rem, 8vw, 2.4rem); } .display-md { font-size: clamp(1.4rem, 6vw, 2rem); } .body-lg { font-size: 1rem; } .btn-primary, .btn-secondary, .btn-outline { width: 100%; max-width: 100%; justify-content: center; } .mobile-bar { padding: 0.85rem 0.75rem; } .mobile-bar a { font-size: 0.78rem; padding: 0.7rem 0.4rem; } .back-top { bottom: 5rem; width: 40px; height: 40px; font-size: 1rem; } .nav-container { border-radius: 16px; } .section-header { margin-bottom: 2.5rem; } .footer-inner { padding: 3rem 4% 1.5rem; } .footer-copy { font-size: 0.75rem; } }
@media (max-width: 360px) { section { padding: 3rem 3.5%; } .display-lg { font-size: 1.5rem; } .nav-logo { font-size: 0.85rem; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
