:root {
  --color-primary: #ffffff;
  --color-primary-light: #f8fafc;
  --color-accent: #dc2626; /* Vermelho principal */
  --color-accent-hover: #b91c1c; /* Vermelho escuro */
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #128c7e;
  --color-gaming: #ef4444;
  --color-gaming-glow: rgba(220, 38, 38, 0.35);
  --color-surface: #ffffff;
  --color-surface-dark: #f1f5f9;
  --color-text: #0f172a;
  --color-text-light: #ffffff;
  --color-text-muted: #475569;
  --color-success: #16a34a;
  --color-instagram-from: #833ab4;
  --color-instagram-to: #e1306c;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --nav-height: 64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  background: var(--color-accent); color: var(--color-text-light); padding: 12px 24px;
  border-radius: 8px; font-weight: 600; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* NAVIGATION */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nav.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 0 24px; height: 100%;
}

.nav-logo { height: 56px; width: auto; filter: drop-shadow(0 2px 4px rgba(220,38,38,0.2)); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--color-text); font-weight: 600; font-size: 0.9375rem;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--color-accent); transition: width 0.25s;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--color-accent); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--color-text); margin: 5px 0;
  border-radius: 2px; transition: 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: var(--nav-height); left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98); padding: 16px 0;
    border-top: 1px solid rgba(0,0,0,0.08); box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .nav-links.active { display: flex; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 1.125rem; }
}

/* SECTIONS */
.section { padding: 80px 24px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: calc(var(--nav-height) + 40px) 24px 60px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  color: var(--color-text-light); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-logo { width: 180px; height: auto; margin-bottom: 32px; filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(255,255,255,0.3)); }

.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.hero h1 span { color: #f8fafc; }

.hero-subtitle { font-size: clamp(1.05rem, 2.5vw, 1.35rem); color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 40px; font-weight: 500; }

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-surface); color: var(--color-accent);
  font-size: 1.125rem; font-weight: 800; padding: 16px 36px;
  border-radius: 50px; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 6px 28px rgba(0,0,0,0.15);
}
.hero-cta:hover { background: #f8fafc; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.hero-cta:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.hero-cta svg { width: 22px; height: 22px; flex-shrink: 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 28px; font-size: 0.95rem; font-weight: 600; color: #fff;
  background: rgba(0,0,0,0.2); padding: 8px 20px; border-radius: 50px; backdrop-filter: blur(4px);
}
.hero-badge svg { width: 16px; height: 16px; color: #4ade80; flex-shrink: 0; }

.hero-catalog-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 20px; font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.1); padding: 10px 24px; border-radius: 50px;
  backdrop-filter: blur(4px); transition: background 0.2s, color 0.2s, transform 0.2s;
}
.hero-catalog-link:hover { background: rgba(255,255,255,0.2); color: #fff; transform: translateY(-2px); }
.hero-catalog-link:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.hero-catalog-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* TRUST BAR */
.trust-bar { background: var(--color-surface-dark); padding: 20px 24px; text-align: center; border-bottom: 1px solid #e2e8f0; }
.trust-bar-inner { max-width: var(--max-width); margin: 0 auto; }

.brand-badges {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 16px 32px;
  margin-bottom: 20px;
}
.brand-badge {
  color: var(--color-text-muted); font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}

.credibility-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 32px 48px;
}
.cred-item { display: flex; align-items: center; gap: 10px; color: var(--color-text); font-size: 0.95rem; font-weight: 600; }
.cred-item svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; }

@media (max-width: 639px) {
  .credibility-row { flex-direction: column; align-items: center; gap: 16px; }
}

/* SECTION HEADING */
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--color-text); }
.section-heading p { color: var(--color-text-muted); font-size: 1.1rem; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* SERVICES */
.services { background: var(--color-surface); }
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}

.service-card {
  background: var(--color-surface); border-radius: 16px; padding: 40px 28px 32px;
  text-align: center; border: 1px solid #e2e8f0;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(220,38,38,0.08); border-color: rgba(220,38,38,0.2); }

.service-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: rgba(220,38,38,0.1); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 32px; height: 32px; color: var(--color-accent); }

.service-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; color: var(--color-text); }
.service-card p { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }

.service-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-surface-dark); color: var(--color-text); font-weight: 700; font-size: 0.9375rem;
  padding: 12px 24px; border-radius: 50px; transition: background 0.2s, color 0.2s;
}
.service-card:hover .service-cta { background: var(--color-accent); color: #fff; }
.service-cta:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.service-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

/* SERVICES CAROUSEL */
#services-carousel { display: flex; flex-direction: column; gap: 24px; }
.specialties-tabs-container { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-right: 15%; }
.specialties-tabs-container::-webkit-scrollbar { display: none; }
.specialties-tabs-container [role="tablist"] { display: flex; gap: 12px; align-items: center; }
.tab-group-label { display: none; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; color: var(--color-text-muted); opacity: 0.7; padding: 0 16px; white-space: nowrap; }
.specialty-tab { display: flex; align-items: center; gap: 10px; padding: 12px 20px; border: none; background: transparent; cursor: pointer; border-bottom: 3px solid transparent; white-space: nowrap; scroll-snap-align: center; flex-shrink: 0; transition: background 0.2s, color 0.2s, border-color 0.2s; font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--color-text-muted); border-radius: 12px 12px 0 0; }
.specialty-tab:hover { background: rgba(0,0,0,0.03); color: var(--color-text); }
.specialty-tab.active { color: var(--color-text); background: rgba(0,0,0,0.05); border-bottom-color: var(--spec-color, var(--color-accent)); }
.spec-tab-icon { width: 24px; height: 24px; color: var(--spec-color, var(--color-accent)); }
.specialty-panel.hidden {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
.specialty-panel:not(.hidden) {
  position: relative;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  width: auto;
  height: auto;
  overflow: visible;
  animation: specFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes specFadeIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
.specialty-panel { background: var(--color-surface); border: 1px solid #e2e8f0; border-radius: 16px; padding: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); display: flex; flex-direction: column; gap: 32px; }

.specialties-content-container { position: relative; overflow: hidden; }
.spec-header-flex { display: flex; align-items: center; gap: 24px; }
.spec-icon-large { width: 80px; height: 80px; border-radius: 24px; display: grid; place-items: center; flex: 0 0 auto; background: rgba(0,0,0,0.03); color: var(--spec-color, var(--color-accent)); }
.spec-icon-large svg { width: 40px; height: 40px; }
.specialty-panel h3 { font-size: 2rem; margin-bottom: 4px; }
.spec-subtitle { font-size: 1.1rem; font-weight: 700; }
.spec-desc { font-size: 1.15rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 24px; }
.spec-bullets { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; }
.spec-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 1.05rem; color: var(--color-text); font-weight: 500; }
.spec-bullets li svg { width: 20px; height: 20px; color: var(--color-accent); flex: 0 0 auto; margin-top: 4px; }
.spec-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.spec-tag { background: var(--color-surface-dark); border: 1px solid #e2e8f0; padding: 6px 14px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; color: var(--color-text-muted); }
.spec-actions { display: flex; gap: 16px; }
.spec-actions .btn-wa { width: 100%; justify-content: center; }
@media (min-width: 1024px) { 
  #services-carousel { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; } 
  .specialties-tabs-container { overflow: visible; scroll-snap-type: none; padding-right: 0; } 
  .specialties-tabs-container [role="tablist"] { flex-direction: column; align-items: stretch; gap: 4px; } 
  .tab-group-label { display: block; margin-top: 24px; margin-bottom: 8px; padding: 0 12px; } 
  .tab-group-label:first-child { margin-top: 0; } 
  .specialty-tab { border-bottom: none; border-left: 3px solid transparent; border-radius: 0 12px 12px 0; scroll-snap-align: unset; white-space: normal; text-align: left; } 
  .specialty-tab.active { border-left-color: var(--spec-color, var(--color-accent)); border-bottom-color: transparent; } 
  .specialty-panel { padding: 48px; } 
  .spec-actions .btn-wa { width: auto; } 
}
.btn-wa { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--color-whatsapp); color: #fff; font-weight: 700; font-size: 1rem; padding: 14px 28px; border-radius: 50px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 12px rgba(37,211,102,0.3); text-decoration: none; }
.btn-wa:hover { background: var(--color-whatsapp-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.btn-wa:focus-visible { outline: 3px solid var(--color-whatsapp); outline-offset: 4px; }
.btn-wa svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Wrapper de posicionamento para fades e setas */
.specialties-tabs-wrapper {
  position: relative;
  width: 100%;
}

/* Fades laterais (indicadores de overflow) */
.specialties-tabs-wrapper::before,
.specialties-tabs-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.25s;
}
.specialties-tabs-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--color-surface) 30%, transparent);
}
.specialties-tabs-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--color-surface) 30%, transparent);
}
.specialties-tabs-wrapper.fade-left::before  { opacity: 1; }
.specialties-tabs-wrapper.fade-right::after  { opacity: 1; }

/* Botões de navegação flutuantes */
.carousel-nav-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  cursor: pointer;
  z-index: 6;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.15s;
  padding: 0;
}
.carousel-nav-btn:hover {
  background: #fff;
  color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(220,38,38,0.18);
  transform: translateY(-50%) scale(1.1);
}
.carousel-nav-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.carousel-nav-btn.prev-btn { left: 6px; }
.carousel-nav-btn.next-btn { right: 6px; }

/* Ocultar completamente em desktop (layout vertical não precisa) */
@media (min-width: 1024px) {
  .specialties-tabs-wrapper::before,
  .specialties-tabs-wrapper::after { display: none; }
  .carousel-nav-btn { display: none; }
}
.carousel-spacer { display: none; }

@media (max-width: 1023px) {
  .specialties-tabs-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .specialties-tabs-container [role="tablist"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .carousel-spacer {
    display: block;
    width: calc(50vw - 50px);
    min-width: calc(50vw - 50px);
    flex-basis: calc(50vw - 50px);
    flex-shrink: 0;
    height: 1px;
    visibility: hidden;
  }
  .specialty-tab {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
  .carousel-nav-btn.prev-btn { left: 8px; }
  .carousel-nav-btn.next-btn { right: 8px; }
}

/* Ajustes do Painel para Mobile */
@media (max-width: 767px) {
  .specialty-panel {
    padding: 24px 20px;
    gap: 20px;
  }
  .spec-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .spec-icon-large {
    width: 56px; height: 56px;
    border-radius: 16px;
  }
  .spec-icon-large svg { width: 28px; height: 28px; }
  .specialty-panel h3 { font-size: 1.5rem; }
  .spec-desc { font-size: 1rem; }
}
.btn-wa:hover { background: var(--color-whatsapp-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.btn-wa:focus-visible { outline: 3px solid var(--color-whatsapp); outline-offset: 4px; }
.btn-wa svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ALL CATEGORIES (SEÇÃO ESTÁTICA INDEXÁVEL) */
.all-categories { background: var(--color-surface-dark); }
.all-categories-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.category-card {
  background: var(--color-surface); border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03); border: 1px solid #e2e8f0;
  display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s;
}
.category-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.category-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 20px;
  background: color-mix(in srgb, var(--cat-color, #dc2626) 12%, transparent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.category-icon svg { width: 26px; height: 26px; color: var(--cat-color, #dc2626); }
.category-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; color: var(--color-text); }
.category-card p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; flex: 1; }
.category-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--color-surface-dark); color: var(--color-text); font-weight: 700; font-size: 0.9rem;
  padding: 12px 20px; border-radius: 50px; transition: background 0.2s, color 0.2s, transform 0.2s;
  align-self: flex-start; text-decoration: none;
}
.category-card:hover .category-cta { background: var(--cat-color, var(--color-accent)); color: #fff; }
.category-cta:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.category-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

@media (min-width: 768px) { .all-categories-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .all-categories-grid { grid-template-columns: repeat(4, 1fr); } }

/* GAMING */
.gaming {
  background: #0f172a;
  position: relative;
  overflow: hidden;
}
.gaming::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(220,38,38,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(185,28,28,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.gaming .section-heading h2 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #ff1f1f 0%, #ff6b00 45%, #d946ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(255, 31, 31, 0.45));
  margin: 0 auto 12px;
  width: fit-content;
  text-align: center;
  position: relative;
}

.gaming .section-heading h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #ff1f1f, #d946ef);
  margin: 16px auto 0;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255, 31, 31, 0.6);
}

.gaming .section-heading p { color: #cbd5e1; }

.brand-badges-row {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
  margin-bottom: 48px; position: relative; z-index: 1;
}
.brand-logo { 
  width: 120px; height: 48px; transition: transform 0.2s, filter 0.2s;
}
.brand-logo:hover { transform: scale(1.1); filter: drop-shadow(0 0 12px rgba(220,38,38,0.4)); }
.brand-logo-light { background: #fff; border-radius: 6px; padding: 4px; }
.brand-logo-light:hover { transform: scale(1.1); filter: drop-shadow(0 0 12px rgba(220,38,38,0.5)); }
.brand-logo img, .brand-logo svg { width: 100%; height: 100%; object-fit: contain; }

.gaming-single-hero { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.gaming-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px;
}
.gaming-photo {
  width: 100%; height: auto; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 2px rgba(220,38,38,0.2);
  transition: transform 0.3s, box-shadow 0.3s; object-fit: cover; aspect-ratio: 1/1;
}
.gaming-photo:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.6), 0 0 0 3px rgba(220,38,38,0.4);
}

.gaming-single-cta {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(220,38,38,0.25);
  border-radius: 20px; padding: 40px; text-align: center;
  backdrop-filter: blur(10px);
}
.gaming-single-cta h3 { font-size: 1.75rem; font-weight: 900; color: #fff; margin-bottom: 16px; }
.gaming-single-cta p { color: #cbd5e1; font-size: 1.05rem; max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }

.gaming-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-accent);
  color: #fff; font-size: 1.1rem; font-weight: 700;
  padding: 18px 40px; border-radius: 50px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(220,38,38,0.4);
}
.gaming-cta:hover { transform: scale(1.04); background: var(--color-accent-hover); box-shadow: 0 8px 36px rgba(220,38,38,0.6); }
.gaming-cta:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.gaming-cta svg { width: 22px; height: 22px; flex-shrink: 0; }

@media (max-width: 639px) {
  .gaming-photos { grid-template-columns: 1fr; gap: 16px; }
  .brand-logo { width: 100px; height: 40px; }
  .gaming-single-cta { padding: 28px 20px; }
  .gaming-single-cta h3 { font-size: 1.35rem; }
}

/* TESTIMONIALS */
.testimonials { background: var(--color-surface-dark); }
.google-reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}

.testimonial-card {
  background: var(--color-surface); border-radius: 16px; padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03); position: relative; border: 1px solid #e2e8f0;
}

.quote-icon { font-size: 3.5rem; color: rgba(220,38,38,0.1); line-height: 1; margin-bottom: 0; font-family: serif; font-weight: bold; }

.testimonial-card blockquote { color: var(--color-text); font-size: 1rem; line-height: 1.6; margin-bottom: 24px; font-weight: 500; }

.testimonial-stars { color: #f59e0b; letter-spacing: 2px; font-size: 1.1rem; margin-bottom: 16px; }

.testimonial-author { font-weight: 800; color: var(--color-text); font-size: 1rem; }
.testimonial-location { color: var(--color-text-muted); font-size: 0.85rem; font-weight: 500; }

/* Google Review Card */
.google-review-card {
  background: var(--color-surface); border-radius: 16px; padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 2px solid #4285f4;
  position: relative;
}
.google-review-header {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 24px;
}
.google-logo-img { height: 30px; width: auto; flex-shrink: 0; }
.google-score { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.google-score-number { font-size: 2rem; font-weight: 900; color: var(--color-text); line-height: 1; }
.google-stars { color: #fbbc04; letter-spacing: 2px; font-size: 1.25rem; }
.google-rating-text { color: #5f6368; font-size: 0.9rem; font-weight: 600; }
.google-review-content { margin-bottom: 24px; }
.google-review-content blockquote { color: var(--color-text); font-size: 1rem; line-height: 1.6; font-weight: 500; }
.google-review-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.google-review-link, .google-write-review {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 0.9375rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.google-review-link {
  background: #4285f4; color: #fff; box-shadow: 0 4px 12px rgba(66,133,244,0.3);
}
.google-review-link:hover { background: #3367d6; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(66,133,244,0.4); }
.google-write-review {
  background: var(--color-surface-dark); color: var(--color-text); border: 1px solid #e2e8f0;
}
.google-write-review:hover { background: #e2e8f0; transform: translateY(-2px); }

@media (min-width: 768px) { .google-reviews-grid { grid-template-columns: repeat(3, 1fr); } .google-review-card { grid-column: span 3; } }
@media (min-width: 900px) { .google-reviews-grid { grid-template-columns: 1fr 1fr; } .google-review-card { grid-column: 1 / -1; } }

/* FAQ */
.faq { background: var(--color-surface); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }

.faq-item { border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden; background: var(--color-surface); box-shadow: 0 2px 8px rgba(0,0,0,0.02); }

.faq-item summary {
  padding: 24px; font-weight: 700; font-size: 1.1rem; cursor: pointer;
  outline: none; user-select: none; display: flex; justify-content: space-between;
  align-items: center; color: var(--color-text);
  transition: color 0.2s, background 0.2s;
}
.faq-item summary:hover { color: var(--color-accent); background: var(--color-surface-dark); }
.faq-item summary:focus-visible { outline: 2px solid var(--color-accent); outline-offset: -2px; border-radius: 16px; }

.faq-item summary::after {
  content: '+'; font-size: 1.5rem; color: var(--color-accent); font-weight: 400;
  transition: transform 0.3s; line-height: 1;
}
.faq-item[open] summary { border-bottom: 1px solid #e2e8f0; background: var(--color-surface-dark); }
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-answer { padding: 24px; color: var(--color-text-muted); font-size: 1rem; line-height: 1.7; }
.faq-item[open] .faq-answer { animation: fadeSlideIn 0.3s ease; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ABOUT */
.about { background: var(--color-surface-dark); }
.about-content { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.about-content p { color: var(--color-text-muted); font-size: 1.1rem; line-height: 1.8; }

.about-diffs { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 800px; margin: 0 auto 48px; }

.diff-card { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: var(--color-surface); border-radius: 16px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); border: 1px solid #e2e8f0; }
.diff-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(220,38,38,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.diff-icon svg { width: 26px; height: 26px; color: var(--color-accent); }
.diff-card h4 { font-weight: 800; margin-bottom: 8px; color: var(--color-text); font-size: 1.125rem; }
.diff-card p { color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.6; }

.about-cta { text-align: center; }
.about-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-accent); color: #fff; font-weight: 800; font-size: 1.1rem;
  padding: 16px 36px; border-radius: 50px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(220,38,38,0.3);
}
.about-cta a:hover { background: var(--color-accent-hover); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(220,38,38,0.4); }
.about-cta a:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 4px; }
.about-cta a svg { width: 22px; height: 22px; flex-shrink: 0; }

@media (min-width: 768px) { .about-diffs { grid-template-columns: 1fr; } }

/* INSTAGRAM */
.instagram { background: var(--color-surface); }
.instagram-card {
  max-width: 600px; margin: 0 auto; text-align: center;
  padding: 56px 40px; border-radius: 24px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff; box-shadow: 0 10px 40px rgba(220,38,38,0.2);
}

.instagram-card svg { width: 56px; height: 56px; margin-bottom: 24px; }
.instagram-card h3 { font-size: 1.75rem; font-weight: 900; margin-bottom: 12px; }
.instagram-card p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 32px; font-weight: 500; }

.instagram-card a {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--color-accent); font-weight: 800; font-size: 1.1rem;
  padding: 16px 36px; border-radius: 50px; transition: transform 0.2s, box-shadow 0.2s;
}
.instagram-card a:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.instagram-card a:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.instagram-card a svg { width: 22px; height: 22px; margin: 0; }

/* FOOTER */
.footer { background: #0f172a; color: #cbd5e1; padding: 80px 24px 32px; }

.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  max-width: var(--max-width); margin: 0 auto;
}

.footer-col h4 { color: #fff; font-weight: 800; font-size: 1.25rem; margin-bottom: 20px; }
.footer-col p { font-size: 0.95rem; color: #94a3b8; line-height: 1.7; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #94a3b8; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; border-radius: 4px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 0.95rem; color: #cbd5e1; font-weight: 500; }
.footer-contact-item svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }

.footer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-accent); color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 12px 28px; border-radius: 50px; margin-top: 12px;
  transition: background 0.2s;
}
.footer-cta:hover { background: var(--color-accent-hover); }
.footer-cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.footer-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 64px; padding-top: 32px; text-align: center; font-size: 0.9rem; color: #64748b; font-weight: 500; }

.footer-logo { height: 66px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(220,38,38,0.4)); }

@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 0.8fr 1.2fr; } }

/* FLOATING WHATSAPP */
.floating-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 64px; height: 64px; background: var(--color-whatsapp); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  animation: waPulse 2s ease-in-out infinite;
}
.floating-wa:hover { background: var(--color-whatsapp-hover); transform: scale(1.1); animation: none; box-shadow: 0 8px 32px rgba(18,140,126,0.5); }
.floating-wa:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.floating-wa svg { width: 34px; height: 34px; }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.65); }
}

/* REVEAL ANIMATIONS (Intersection Observer) */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal.visible { opacity: 1; transform: none; transition: none; }
}

/* FOCUS VISIBLE */
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }