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

:root {
  --bg: #0a0a12;
  --neon1: #00f5ff;
  --neon2: #ff00e5;
  --neon3: #7c3aed;
  --text: #f0f0ff;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, sans-serif;
  overflow-x: clip;
  cursor: none;
}

#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.cursor-glow {
  position: fixed;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--neon1), transparent 70%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: transform 0.05s linear;
}

.navbar {
  position: fixed;
  top: 0; width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  backdrop-filter: blur(12px);
  background: rgba(10,10,18,0.6);
  z-index: 100;
  border-bottom: 1px solid rgba(0,245,255,0.1);
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
.logo span {
  color: var(--neon1);
  text-shadow: 0 0 15px var(--neon1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--neon1), var(--neon2));
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--neon1); }

.menu-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; width: 100%; height: 100%; z-index: 1; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 12s ease-in-out infinite;
}
.shape1 { width: 400px; height: 400px; background: var(--neon1); top: -100px; left: -100px; }
.shape2 { width: 350px; height: 350px; background: var(--neon2); bottom: -80px; right: -80px; animation-delay: 3s; }
.shape3 { width: 300px; height: 300px; background: var(--neon3); top: 50%; left: 60%; animation-delay: 6s; }

@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-40px) scale(1.15); }
}

.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px; }

.glitch {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--neon1), var(--neon2), var(--neon3));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-move 4s linear infinite;
  letter-spacing: 2px;
}
@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #b8b8d4;
  line-height: 1.6;
}

.hero-cta { margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(90deg, var(--neon1), var(--neon3));
  color: #0a0a12;
  box-shadow: 0 0 25px rgba(0,245,255,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 35px rgba(0,245,255,0.7); }
.btn-outline {
  border: 1px solid var(--neon1);
  color: var(--neon1);
  background: transparent;
}
.btn-outline:hover { background: rgba(0,245,255,0.1); }

.scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid var(--neon1);
  border-radius: 20px;
}
.scroll-indicator span {
  position: absolute;
  top: 8px; left: 50%;
  width: 6px; height: 6px;
  background: var(--neon1);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll-down 1.5s infinite;
}
@keyframes scroll-down {
  0% { top: 8px; opacity: 1; }
  100% { top: 28px; opacity: 0; }
}

section { padding: 100px 5%; position: relative; z-index: 2; }

.section-title {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  text-align: center;
}
.section-title span { color: var(--neon1); font-size: 1.2rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon1);
  box-shadow: 0 20px 40px rgba(0,245,255,0.15);
}
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: 0.8rem; color: var(--neon1); }
.service-card p { color: #b8b8d4; line-height: 1.5; font-size: 0.95rem; }

.palette-section { text-align: center; }
.palette-sub { color: #b8b8d4; margin-bottom: 2.5rem; }
.color-strip {
  display: flex;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.color-strip div { flex: 1; transition: flex 0.4s; cursor: pointer; }
.color-strip div:hover { flex: 3; }

.about { max-width: 900px; margin: 0 auto; text-align: center; }
.about p { color: #b8b8d4; line-height: 1.8; margin-bottom: 1.2rem; font-size: 1.05rem; }

.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--neon1);
  text-shadow: 0 0 20px rgba(0,245,255,0.5);
}
.stat p { color: #b8b8d4; margin-top: 0.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info p { margin-bottom: 1.5rem; line-height: 1.6; color: #b8b8d4; }
.contact-info strong { color: var(--neon1); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px;
  color: var(--text);
  font-family: inherit;
  resize: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--neon1);
  box-shadow: 0 0 15px rgba(0,245,255,0.2);
}

.footer {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
  .nav-links {
  position: fixed;
  top: 70px; right: -100%;
  flex-direction: column;
  background: rgba(10,10,18,0.95);
  backdrop-filter: blur(12px);
  width: 250px;
  height: 100vh;
  padding: 2rem;
  gap: 1.5rem;
  transition: right 0.4s ease;
  z-index: 200;
}
.nav-links.active { right: 0; }
  .menu-toggle { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
  body { cursor: auto; }
  .cursor-glow { display: none; }
}

.whatsapp-btn {
  position: fixed;
  bottom: 70px;
  right: 10px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(37,211,102,0.5);
  z-index: 999;
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonials { text-align: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem; max-width: 900px; margin: 0 auto; }
.testimonial-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 2rem; }
.testimonial-card p { font-style: italic; color: #d0d0f0; margin-bottom: 1rem; }
.testimonial-card span { color: var(--neon1); font-size: 0.9rem; }

.gallery { text-align: center; }
.gallery-sub { color: #b8b8d4; margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.85);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85%; border-radius: 12px; box-shadow: 0 0 60px rgba(0,245,255,0.3); }
.lightbox-close {
  position: absolute;
  top: 30px; right: 40px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  bottom: 25px; left: 25px;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--neon1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--neon1);
  text-decoration: none;
  font-size: 1.4rem;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.brands { text-align: center; }
.brands-sub { color: #b8b8d4; margin-bottom: 3rem; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.brand-item {
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: all 0.4s ease;
}
.brand-item img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.4s ease;
}
.brand-item:hover {
  border-color: var(--neon1);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,245,255,0.25);
}
.brand-item:hover img {
  transform: scale(1.05);
}
.contact-form .privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  margin: 4px 0 8px;
  color: #d7d7e8;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.contact-form .privacy-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--neon1);
  cursor: pointer;
}

.contact-form .privacy-consent span {
  flex: 1;
}

.contact-form .privacy-consent a {
  color: var(--neon1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .privacy-consent a:hover {
  color: #ffffff;
}