:root {
  --bg: #0a0a0c;
  --bg-2: #121215;
  --bg-3: #18181d;
  --card: #141418;
  --border: #2c2c34;
  --text: #ffffff;
  --text-2: #b3b3bd;
  --gold: #ffd700;
  --gold-dark: #d4a017;
  --gold-glow: rgba(255, 215, 0, 0.16);
  --accent: #00bfff;
  --accent-dark: #0099cc;
  --accent-glow: rgba(0, 191, 255, 0.2);
  --shadow: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.5), 0 4px 10px rgba(0,0,0,0.4);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #0a0a0c; }

 ::-webkit-scrollbar { width: 6px; }
 ::-webkit-scrollbar-track { background: #0a0a0c; }
::-webkit-scrollbar-thumb { background: #bbb; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 3rem 0.6rem;
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(10,10,12,0.92);
  padding: 0.7rem 3rem 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  animation: logoIn 1s ease-out both;
  transition: filter 0.3s;
}

@keyframes logoIn {
  0% { opacity: 0; transform: translateY(-30px) scale(0.85); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.nav-logo img {
  height: 100px;
  transition: height 0.3s;
  animation: logoFloat 3s ease-in-out infinite;
}

.nav-logo:hover img {
  animation: logoPulse 0.8s ease-in-out infinite;
  filter: brightness(1.2);
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); filter: drop-shadow(0 0 12px var(--gold)); }
}

.nav.scrolled .nav-logo img { height: 75px; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  padding: 0.55rem 1rem;
  border-radius: 12px;
  white-space: nowrap;
  outline: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.045);
  border: none;
}

.nav-links a::after {
  content: none;
}

.nav-links a:hover {
  color: #ffd700;
  background: linear-gradient(90deg, rgba(255,215,0,0.14), rgba(255,215,0,0.03));
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}

.nav-links a.active {
  color: #0a0a0c;
  background: linear-gradient(135deg, #ffd700, #e6b800);
  box-shadow: 0 6px 20px rgba(255,215,0,0.3);
}

.nav-links a:focus,
.nav-links a:focus-visible {
  outline: none;
}

.nav-links a:active {
  color: #ffd700;
  transform: translateY(0);
}

/* ─── NAV DROPDOWN (subcategorias Equipamentos) ─── */
.nav-drop { position: relative; }
.nav-drop > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.drop-caret {
  font-size: 0.5rem;
  line-height: 1;
  opacity: 0.7;
  transition: transform 0.25s ease;
  pointer-events: none;
  display: none;
}
.nav-drop:hover > a .drop-caret,
.nav-drop.open > a .drop-caret { transform: rotate(180deg); }
.drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(14px);
  min-width: 320px;
  margin: 0;
  padding: 0.6rem;
  list-style: none;
  background: linear-gradient(165deg, rgba(24,24,32,0.97), rgba(10,10,12,0.98));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,215,0,0.14);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1), visibility 0.35s;
  z-index: 1002;
}
.drop-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, rgba(24,24,32,0.97), rgba(10,10,12,0.98));
  border-left: 1px solid rgba(255,215,0,0.14);
  border-top: 1px solid rgba(255,215,0,0.14);
  border-radius: 3px;
}
.nav-drop:hover .drop-menu,
.nav-drop.open .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.drop-menu li {
  width: 100%;
  position: relative;
}
.drop-menu a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #cfcfd6;
  text-transform: none;
  white-space: normal;
  transition: all 0.2s ease;
}
.drop-menu a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,215,0,0.45);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.drop-menu a::after { display: none; }
.drop-menu a:hover,
.drop-menu a.active {
  background: linear-gradient(90deg, rgba(255,215,0,0.12), rgba(255,215,0,0.02));
  color: #ffd700;
  transform: translateX(3px);
}
.drop-menu a:hover::before,
.drop-menu a.active::before {
  background: #ffd700;
  box-shadow: 0 0 8px rgba(255,215,0,0.7);
}
.drop-menu a.active::after { display: none; }
.drop-menu li + li { margin-top: 2px; }

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  box-shadow: 0 4px 20px rgba(212,160,23,0.3) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none; }

.nav-search-item {
  position: relative;
}

.search-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.2s;
}

.search-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.search-btn svg {
  width: 18px;
  height: 18px;
}

.search-box {
  position: absolute;
  top: 44px;
  right: 0;
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: rgba(18,18,22,0.96);
  backdrop-filter: blur(16px);
  border: 1px solid #2c2c34;
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  width: 280px;
  z-index: 1001;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.search-box.active {
  display: flex;
}

.search-box .search-icon {
  width: 18px;
  height: 18px;
  color: var(--text-secondary);
}

.search-box input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 0.85rem;
  font-family: inherit;
}

@media (max-width: 768px) {
  .search-box {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
  }
}

.mobile-toggle {
  display: none;
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  color: var(--text);
  font-size: 1.3rem;
  border-radius: 6px;
  line-height: 1;
  transition: all 0.2s;
}

.mobile-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* ─── HERO ─── */
.hero {
  min-height: 115vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero.hero-parallax {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero.hero-parallax {
    background-attachment: scroll;
  }
}

.hero.hero-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,10,18,0.92) 0%, rgba(8,10,18,0.72) 50%, rgba(8,10,18,0.95) 100%);
}

.hero.hero-parallax::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30vh;
  background: linear-gradient(180deg, transparent 0%, var(--bg-2) 100%);
}

.hero-light {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-beam { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 950px;
  padding: 0 2rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,215,0,0.35);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  margin-top: 0;
}

.hero h1 .gold { color: var(--gold); }

.typewriter {
  display: inline-block;
  color: var(--gold);
  border-right: 3px solid var(--gold);
  padding-right: 0.15em;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: #0a0a0c;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: btnShine 2.5s infinite;
}

.btn-primary:hover {
  background: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow), 0 0 60px rgba(0,191,255,0.4);
  transform: translateY(-3px) scale(1.03);
  color: #0a0a0c;
}

.btn-primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 0 20px var(--accent-glow);
}

@keyframes btnShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--accent);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: #0a0a0c;
}

.btn-outline:hover::before {
  width: 100%;
}

.btn-outline:active {
  transform: scale(0.96);
}

/* ─── HERO STATS ─── */
.hero-stats-wrap {
  padding: 4rem 0;
  background: var(--bg-2);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.hero-stat { text-align: center; }

.hero-stat .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  display: inline;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat .plus {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  display: inline;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.75rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stat .sub {
  display: block;
  font-size: 0.65rem;
  color: var(--text-3);
  margin-top: 0.2rem;
}

/* ─── ABOUT ─── */
.about-section {
  background: var(--bg-2);
  padding: 2rem 3rem 5rem;
}

.about-section .hero-stat .num,
.about-section .hero-stat .plus {
  font-size: 3.4rem;
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255,215,0,0.6), 0 0 25px rgba(255,215,0,0.35);
  animation: statGlow 2.2s ease-in-out infinite;
}

.about-section .hero-stat .label {
  font-size: 0.85rem;
}

.about-section .hero-stat {
  animation: statFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.4s);
}

@keyframes statGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(255,215,0,0.6), 0 0 25px rgba(255,215,0,0.35); }
  50% { text-shadow: 0 0 18px rgba(255,215,0,0.95), 0 0 45px rgba(255,215,0,0.6); }
}

@keyframes statFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-brand .tag {
  margin-bottom: 1rem;
}

.about-brand .about-logo {
  height: auto;
  width: 350px;
  object-fit: contain;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-transform {
  position: relative;
  display: inline-block;
}

.logo-transform .logo-new,
.logo-transform .logo-old {
  display: block;
  backface-visibility: hidden;
}

.logo-transform .logo-old {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(0.8) rotateY(90deg);
}

.logo-transform:hover .logo-new {
  opacity: 0;
  transform: scale(0.8) rotateY(-90deg);
}

.logo-transform:hover .logo-old {
  opacity: 1;
  transform: scale(1) rotateY(0deg);
}

.about-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
}

.about-brand h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.4rem 0;
  line-height: 1.1;
}

.about-sub {
  font-size: 1rem;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-desc p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-desc .btn {
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .about-brand h2 {
    font-size: 1.8rem;
  }
}

/* ─── SECTIONS ─── */
.section {
  padding: 7rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-dark {
  background: var(--bg-2);
  max-width: 100%;
  padding: 7rem 3rem;
}

.section-dark > div { max-width: 1400px; margin: 0 auto; }

.s-head {
  text-align: center;
  margin-bottom: 4rem;
}

.s-head .tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.s-head h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.s-head h2 .gold { color: var(--gold); }

.s-head p {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 1rem auto 0;
}

/* ─── FULL-WIDTH SECTION ─── */
.section-full {
  max-width: 100%;
  padding: 6rem 0 7rem;
}

.section-full .s-head {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section-full .services-grid {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

/* ─── SERVICE CARDS ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card {
  background: var(--card);
  padding: 3rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  background: rgba(0, 191, 255, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,191,255,0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon {
  display: block;
  margin-bottom: 1.5rem;
  width: 48px;
  height: 48px;
}

.serv-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .serv-icon {
  transform: scale(1.15) rotate(-5deg);
  color: #e6b800;
}

.service-card:nth-child(1) .serv-icon { animation: iconFloat 2.5s ease-in-out infinite; }
.service-card:nth-child(2) .serv-icon { animation: iconFloat 2.5s ease-in-out infinite 0.3s; }
.service-card:nth-child(3) .serv-icon { animation: iconFloat 2.5s ease-in-out infinite 0.6s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.service-card:hover .serv-icon {
  animation: iconShake 0.6s ease-in-out;
}

@keyframes iconShake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-card .arrow {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.service-card:hover .arrow {
  transform: translateX(5px);
}

/* ─── BRANDS MARQUEE ─── */
.parallax-section {
  height: 700px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
}

.parallax-home2 {
  height: auto;
  aspect-ratio: 1909/824;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.parallax-lg { height: 800px; }

.brands-wrap {
  padding: 0.25rem 0 0;
  background: var(--bg-2);
}

.brands-wrap .s-head {
  margin: 2rem 0 2rem;
}

.brands-wrap .s-head h2,
.section .s-head h2 {
  animation: titlePulse 2.5s ease-in-out infinite;
}

.brands-wrap .s-head h2 .gold,
.section .s-head h2 .gold {
  animation: titleColor 2.5s ease-in-out infinite;
}

@keyframes titlePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes titleColor {
  0%, 100% { color: var(--gold); }
  50% { color: #e60000; }
}

.brands-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

.brands-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
}

.brands-row {
  display: grid;
  justify-items: center;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.brands-row:first-child {
  grid-template-columns: repeat(5, auto);
}

.brands-row:last-child {
  grid-template-columns: repeat(4, auto);
}

.brand-logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-logo::after {
  content: '';
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #fff);
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.22,1,0.36,1);
}

.brand-logo img {
  height: 44px;
  width: auto;
  opacity: 0.45;
  filter: grayscale(1);
  transition: all 0.45s cubic-bezier(0.22,1,0.36,1);
  object-fit: contain;
}

.brand-logo:hover img {
  opacity: 1;
  filter: grayscale(0) drop-shadow(0 0 12px rgba(255,215,0,0.35));
  transform: translateY(-4px);
}

.brand-logo:hover::after {
  width: 100%;
}

.brand-logo.brand-epson img { height: 90px; }
.brand-logo.brand-optoma img { height: 56px; }
.brand-logo.brand-novastar img { height: 70px; }
.brand-logo.brand-qsc img { height: 40px; }
.brand-logo.brand-barco img { height: 44px; }

/* ─── MAGIC APPEAR ─── */
.brands-grid.r { opacity: 1; transform: none; }

.brand-logo {
  opacity: 0;
  transform: scale(0.2) rotate(-8deg);
  filter: blur(6px);
  transition: none;
}

.brands-grid.v .brand-logo {
  animation: magicAppear 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}

.brands-grid.v .brands-row:first-child .brand-logo:nth-child(1) { animation-delay: 0s; }
.brands-grid.v .brands-row:first-child .brand-logo:nth-child(2) { animation-delay: 0.14s; }
.brands-grid.v .brands-row:first-child .brand-logo:nth-child(3) { animation-delay: 0.28s; }
.brands-grid.v .brands-row:first-child .brand-logo:nth-child(4) { animation-delay: 0.42s; }
.brands-grid.v .brands-row:first-child .brand-logo:nth-child(5) { animation-delay: 0.56s; }
.brands-grid.v .brands-row:last-child .brand-logo:nth-child(1) { animation-delay: 0.7s; }
.brands-grid.v .brands-row:last-child .brand-logo:nth-child(2) { animation-delay: 0.84s; }
.brands-grid.v .brands-row:last-child .brand-logo:nth-child(3) { animation-delay: 0.98s; }
.brands-grid.v .brands-row:last-child .brand-logo:nth-child(4) { animation-delay: 1.12s; }

@keyframes magicAppear {
  0% {
    opacity: 0;
    transform: scale(0.2) rotate(-8deg);
    filter: blur(6px);
  }
  55% {
    opacity: 1;
    transform: scale(1.12) rotate(2deg);
    filter: blur(0) drop-shadow(0 0 18px rgba(255,215,0,0.8));
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes magicSparkle {
  0% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
  100% { opacity: 0; transform: scale(0) rotate(360deg); }
}

.brands-grid.v .brand-logo::before {
  content: '✦';
  position: absolute;
  top: -16px;
  left: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  opacity: 0;
  animation: magicSparkle 0.9s ease-out forwards;
  pointer-events: none;
}

@media (max-width: 768px) {
  .brand-logo { filter: blur(3px); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo,
  .brands-grid .brand-logo::before {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}

.no-js .brands-grid .brand-logo,
html:not(.js-loaded) .brands-grid:not(.v) .brand-logo { opacity: 1; transform: none; filter: none; }

@media (max-width: 768px) {
  .brands-row {
    gap: 1rem;
  }
  .brand-logo img {
    height: 32px;
  }
  .brands-row:first-child {
    grid-template-columns: repeat(3, 1fr);
  }
  .brands-row:last-child {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-card {
  background: var(--card);
  padding: 2.5rem;
  text-align: center;
}

.feature-card .num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-2);
}

/* ─── MARKETS ─── */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.market-card {
  background: var(--card);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.market-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: left;
}

.market-card:hover::before {
  transform: scaleX(1);
}

.market-card:hover {
  background: rgba(0, 191, 255, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,191,255,0.15);
}

.market-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.market-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.market-card p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-text h2 .gold { color: var(--gold); }

.about-text p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-visual {
  background: var(--bg-2);
  border: 1px solid var(--border);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--gold-glow) 0%, transparent 50%);
}

/* ─── CTA ─── */
.cta {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 6rem 3rem;
}

.cta h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.cta h2 .gold { color: var(--gold); }

.cta p {
  color: var(--text-2);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer-col p {
  color: var(--text-2);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.65rem; }

.footer-col ul li a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social a.social-text {
  width: auto;
  height: auto;
  padding: 0.5rem 0.9rem;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p, .footer-bottom a {
  color: var(--text-2);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--gold); }

/* ─── SOCIAL FLOAT BAR (LEFT) ─── */
.social-float {
  position: fixed;
  right: 2rem;
  top: 58%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: socialFloatIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
}

@keyframes socialFloatIn {
  from { opacity: 0; transform: translateY(-50%) translateX(40px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.social-float-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.social-float-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  z-index: 1;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 2px rgba(0,0,0,0.25));
}

.social-float-btn::after {
  content: attr(aria-label);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 10px;
  padding: 0.35rem 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  z-index: 2;
}

.social-float-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.social-float-btn:hover {
  transform: scale(1.1) translateX(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.social-float-btn:hover svg {
  transform: scale(1.15) rotate(-5deg);
}

/* Brand colors */
.social-float-btn.whatsapp { background: #25D366; }
.social-float-btn.instagram { background: linear-gradient(135deg, #E1306C, #FD1D1D, #FCAF45); }
.social-float-btn.facebook { background: #1877F2; }
.social-float-btn.youtube { background: #FF0000; }
.social-float-btn.linkedin { background: #0A66C2; }

/* Pulse animation for WhatsApp */
.social-float-btn.whatsapp {
  animation: whatsappPulse 2.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.5), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* Staggered entrance for each button */
.social-float-btn:nth-child(1) { animation-delay: 0.1s; }
.social-float-btn:nth-child(2) { animation-delay: 0.2s; }
.social-float-btn:nth-child(3) { animation-delay: 0.3s; }
.social-float-btn:nth-child(4) { animation-delay: 0.4s; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .social-float {
    left: 50%;
    top: auto;
    bottom: 1.5rem;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    animation: socialFloatInMobile 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  }
  
  @keyframes socialFloatInMobile {
    from { opacity: 0; transform: translateX(-50%) translateY(40px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }
  
  .social-float-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: none;
  }
  
  .social-float-btn::after { display: none; }
  
  .social-float-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  }
  
  .social-float-btn.whatsapp { animation: none; }
}

/* ─── WHATSAPP (OLD FLOAT - can remove or keep) ─── */
.whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: all 0.3s;
}

.whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp svg { width: 26px; height: 26px; fill: #fff; }

/* Hide old WhatsApp float since we have social bar */
.whatsapp { display: none; }

/* ─── SCROLL UP BUTTON ─── */
.scroll-up-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: #0a0a0c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(255,215,0,0.35);
  transition: all 0.3s;
}

.scroll-up-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.5);
}

.scroll-up-btn svg { width: 24px; height: 24px; }

@media (max-width: 768px) {
  .scroll-up-btn { bottom: 1.25rem; right: 1.25rem; width: 46px; height: 46px; }
  .scroll-up-btn svg { width: 20px; height: 20px; }
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 12rem 3rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.page-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--gold-glow) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-content .tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.page-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero-content h1 .gold { color: var(--gold); }

.page-hero-content p {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 1rem auto 0;
}

/* ─── DETAIL GRID ─── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.detail-grid.reverse .detail-text { order: 2; }
.detail-grid.reverse .detail-visual { order: 1; }

.detail-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.detail-text h2 .gold { color: var(--gold); }

.detail-text p {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.detail-text ul { list-style: none; margin-bottom: 2rem; }

.detail-text ul li {
  padding: 0.4rem 0;
  color: var(--text-2);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.detail-text ul li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
}

.detail-visual {
  min-height: 350px;
  background: transparent;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}

.detail-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.venda-bg::after, .locacao-bg::after, .manutencao-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

.contact-info h2 .gold { color: var(--gold); }

.contact-info p { color: var(--text-2); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }

.contact-item { margin-bottom: 1.5rem; }

.contact-item h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-item p, .contact-item a {
  color: var(--text-2);
  font-size: 0.92rem;
  text-decoration: none;
}

.contact-item a:hover { color: var(--gold); }

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border 0.3s;
  border-radius: 6px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.contact-form select { color: var(--text-2); }
.contact-form select option { color: var(--text); background: var(--bg); }

/* ─── BRANDS SHOWCASE ─── */
.brands-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.brand-item {
  background: var(--card);
  padding: 2.5rem;
}

.brand-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.brand-item p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ─── EVENTS ─── */
.events-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.event-card {
  background: var(--card);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.event-year {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.event-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.event-loc {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.event-card p { color: var(--text-2); font-size: 0.88rem; line-height: 1.7; }

/* ─── VISUAL CARD ─── */
.visual-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.visual-card .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.visual-card h4 {
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 500;
}

/* ─── CALCULATOR ─── */
.calc-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.calc-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 250px; height: 250px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.calc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.calc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calc-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 2; }

.calc-header-text h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.calc-header-text p {
  font-size: 0.85rem;
  color: var(--text-2);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
}

.calc-controls { display: flex; flex-direction: column; gap: 1.5rem; }

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.calc-label-row label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.calc-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gold);
}

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-3);
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(245,158,11,0.3);
}

.calc-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: none;
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-2);
  margin-top: 0.3rem;
}

.calc-label { font-size: 0.9rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 0.6rem; }

.calc-btn-group {
  display: grid;
  gap: 0.5rem;
}

.calc-btn-group-3 { grid-template-columns: repeat(3, 1fr); }
.calc-btn-group-4 { grid-template-columns: repeat(2, 1fr); }

.calc-btn {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.5rem;
  font-size: 0.8rem;
  cursor: pointer;
  text-align: center;
  color: var(--text-2);
  font-family: var(--font);
  font-weight: 600;
  transition: all 0.2s;
}

.calc-btn:hover { border-color: var(--gold); background: rgba(212,160,23,0.05); }

.calc-btn.active-lighting {
  background: rgba(212,160,23,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.calc-btn.active-use {
  background: rgba(212,160,23,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.calc-btn-desc {
  font-size: 0.7rem;
  color: var(--text-2);
  font-weight: 400;
  margin-top: 0.15rem;
}

.calc-result {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.calc-result-label {
  font-size: 0.8rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.calc-meters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.calc-meter {
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.calc-meter-inches { background: rgba(212,160,23,0.06); border: 1px solid rgba(212,160,23,0.2); }
.calc-meter-lumens { background: rgba(212,160,23,0.06); border: 1px solid rgba(212,160,23,0.2); }

.calc-meter-header {
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.2rem;
}

.calc-meter-header svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2; }

.calc-meter-header.inches { color: var(--gold); }
.calc-meter-header.lumens { color: var(--gold); }

.calc-meter-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  margin: 0.15rem 0;
  line-height: 1.1;
}

.calc-meter-sub {
  font-size: 0.75rem;
  color: var(--text-2);
}

.calc-products-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.calc-products-label svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2; }

.calc-throw-info { font-weight: 400; font-size: 0.7rem; color: var(--gold); background: rgba(245,158,11,0.12); padding: 0.1rem 0.5rem; border-radius: 6px; letter-spacing: 0.02em; }

.calc-products { display: flex; flex-direction: column; gap: 0.5rem; }

.calc-product {
  background: rgba(0,0,0,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border 0.2s;
  text-decoration: none;
}

.calc-product:hover { border-color: var(--gold); background: rgba(212,160,23,0.04); }

.calc-product-name { font-size: 0.85rem; font-weight: 700; color: var(--text); display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem; }
.calc-product-name a { color: var(--text); text-decoration: none; transition: color 0.2s; }
.calc-product-name a:hover { color: var(--gold); }
.calc-product-specs { font-size: 0.72rem; color: var(--text-2); margin-top: 0.1rem; }

.badge { font-size: 0.6rem; font-weight: 600; padding: 0.08rem 0.35rem; border-radius: 4px; letter-spacing: 0.02em; white-space: nowrap; }
.badge-std { background: rgba(0,0,0,0.05); color: var(--text-2); }
.badge-short { background: rgba(212,160,23,0.12); color: var(--gold); }
.badge-ultra { background: rgba(212,160,23,0.2); color: #b8860b; }

.calc-product-arrow { flex: 0 0 auto; }
.calc-product-arrow a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); transition: all 0.25s; }
.calc-product-arrow a:hover { border-color: var(--gold); background: rgba(212,160,23,0.08); }
.calc-product-arrow svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ─── REVEAL ─── */
/* Reveal animation */
.r { opacity: 0; transform: translateY(25px); transition: all 0.6s cubic-bezier(0.22,1,0.36,1); }
.r.v { opacity: 1; transform: translateY(0); }

/* Fallback: ensure content visible if JS fails or loads late */
@media (prefers-reduced-motion: reduce) {
  .r { opacity: 1; transform: none; }
}

/* Immediate visibility after short delay if JS hasn't run */
.no-js .r,
.js-loaded .r { opacity: 1; transform: none; }
.r.v { opacity: 1; transform: translateY(0); }

/* ─── SEARCH BOX ─── */
.search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-box .search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-2);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--border);
  border-radius: 100px;
  background: var(--card);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s;
}

.search-box input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,160,23,0.1);
}

.search-box input::placeholder { color: var(--text-2); }

.search-no-results {
  text-align: center;
  padding: 3rem;
  color: var(--text-2);
  font-size: 0.95rem;
  display: none;
}

.search-no-results.visible { display: block; }

/* ─── PRODUCT GALLERY ─── */
.prod-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.prod-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--border);
  background: var(--card);
}

.prod-item:hover {
  background: rgba(0, 191, 255, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,191,255,0.15);
  border-color: rgba(0,191,255,0.3);
}

.prod-img {
  width: 100%;
  height: 180px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
  background-color: transparent;
}

.prod-item:hover .prod-img {
  transform: scale(1.05);
}

.prod-info {
  padding: 0.875rem 1rem;
  background: var(--card);
}

.prod-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.15rem;
}

.prod-info span {
  font-size: 0.72rem;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .prod-gallery { grid-template-columns: repeat(2, 1fr); }
  .prod-img { height: 160px; }
}

@media (max-width: 480px) {
  .prod-gallery { grid-template-columns: 1fr; }
  .prod-img { height: 200px; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .nav-links a { font-size: 0.7rem; padding: 0.4rem 0.35rem; letter-spacing: 0.01em; }
  .nav-cta { padding: 0.4rem 0.8rem !important; font-size: 0.7rem !important; }
  .nav-logo img { height: 85px; }
  .nav.scrolled .nav-logo img { height: 68px; }
}

@media (max-width: 1100px) {
  .hero h1 { font-size: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .svc-detail { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-btn-group-3 { grid-template-columns: 1fr 1fr 1fr; }

  .nav { padding: 0.8rem 1.5rem 0.5rem; }
  .nav.scrolled { padding: 0.5rem 1.5rem 0.3rem; }

  .mobile-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(10,10,12,0.98);
  border-left: 1px solid #2c2c34;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    transition: right 0.35s cubic-bezier(0.22,1,0.36,1);
    align-items: stretch;
    border-left: 1px solid var(--border);
    box-shadow: -6px 0 30px rgba(0,0,0,0.06);
  }
  .nav-links.active { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.8rem 1rem;
    white-space: normal;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .nav-links a::after { display: none; }
  .nav-links a:hover,
  .nav-links a.active {
    transform: none;
    background: linear-gradient(90deg, rgba(255,215,0,0.12), transparent);
    color: #ffd700;
  }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
  .nav-drop { position: static; }
  .nav-drop > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .drop-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-left: 2px solid rgba(255,215,0,0.35);
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0 1rem;
    margin: 0.25rem 0 0.5rem 0.25rem;
    display: none;
    transition: none;
  }
  .drop-menu::before { display: none; }
  .nav-drop.open .drop-menu { display: block; }
  .drop-menu a {
    padding: 0.7rem 0.75rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.72rem;
    transform: none;
  }
  .drop-menu a:hover,
  .drop-menu a.active { transform: none; }
  .drop-menu a::before {
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .section { padding: 4rem 1.5rem; }
  .section-dark { padding: 4rem 1.5rem; }
  .s-head h2 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta { padding: 4rem 1.5rem; }
  .cta h2 { font-size: 2rem; }
  .page-hd h1 { font-size: 2rem; }
  .svc-text { padding: 2rem; }
  .service-card { padding: 2rem; }
  .market-card { padding: 2rem; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-meters { grid-template-columns: 1fr; }
  .calc-btn-group-3 { grid-template-columns: 1fr; }
  .calc-btn-group-4 { grid-template-columns: 1fr; }
  .calc-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
}

/* ─── CONTACT SECTION (Home page, after prod gallery) ─── */
.contact-section {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 6rem 3rem;
  margin-top: -1rem;
  box-shadow: var(--shadow-lg);
}

.contact-section .contact-title {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-section .contact-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.contact-section .contact-title h2 .gold { color: #e60000; }

.contact-section .contact-title .animated-underline {
  display: inline-block;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #e60000, #ff4444, #cc0000);
  border-radius: 2px;
  animation: underlineGlow 1.5s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(230, 0, 0, 0.3);
}

@keyframes underlineGlow {
  0% { width: 0; opacity: 0.5; box-shadow: 0 0 0px rgba(230, 0, 0, 0); }
  25% { width: 50px; opacity: 0.8; box-shadow: 0 0 10px rgba(230, 0, 0, 0.3); }
  50% { width: 100px; opacity: 1; box-shadow: 0 0 20px rgba(230, 0, 0, 0.5); }
  75% { width: 50px; opacity: 0.8; box-shadow: 0 0 10px rgba(230, 0, 0, 0.3); }
  100% { width: 0; opacity: 0.5; box-shadow: 0 0 0px rgba(230, 0, 0, 0); }
}

.contact-section .contact-subtitle {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.contact-section .contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.contact-method:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.contact-method .method-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 160, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method .method-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
}

.contact-method .method-text {
  display: flex;
  flex-direction: column;
}

.contact-method .method-text .method-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
}

.contact-method .method-text .method-value {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.contact-method.whatsapp:hover {
  background: rgba(37, 211, 102, 0.05);
  border-color: #25D366;
}

.contact-method.whatsapp .method-icon {
  background: rgba(37, 211, 102, 0.15);
}

.contact-method.whatsapp .method-icon svg {
  fill: #25D366;
  stroke: none;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.contact-form .form-row-full {
  grid-column: 1 / -1;
  margin-bottom: 0.5rem;
}

.contact-form .product-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
  border-radius: 8px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .file-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.875rem 1.2rem;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--text-2);
  font-family: var(--font);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form .file-btn:hover {
  border-color: var(--gold);
  color: var(--text);
  background: var(--card);
}

.contact-form .file-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-form .product-select {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.875rem 1.2rem;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s;
}

.contact-form .product-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.contact-form .submit-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.875rem 2rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.contact-form .submit-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(212, 160, 23, 0.25);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 2rem;
  }
  .contact-section .contact-title h2 {
    font-size: 2rem;
  }
  .contact-section .contact-methods {
    flex-direction: column;
    align-items: center;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ─── MAGICAL PRODUCT TRANSFORMATION ─── */
.magical-grid {
  position: relative;
}

.magical-grid .prod-item.magical-transform {
  animation: magicTransform 1.2s ease-in-out forwards;
  position: relative;
  overflow: hidden;
}

.magical-grid .prod-item.magical-transform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 160, 23, 0.3) 0%, transparent 70%);
  backdrop-filter: blur(2px);
  z-index: 10;
  opacity: 0;
  animation: magicGlow 1.2s ease-in-out forwards;
}

.magical-grid .prod-item.magical-transform .prod-img {
  animation: magicImgSwap 0.8s ease-in-out;
}

.magical-grid .prod-item.magical-transform .prod-info h4 {
  animation: magicTextReveal 0.6s ease-in-out 0.4s both;
}

.magical-grid .prod-item.magical-transform .prod-info span {
  animation: magicTextReveal 0.6s ease-in-out 0.5s both;
}

@keyframes magicTransform {
  0% { transform: scale(1) rotate(0deg); }
  15% { transform: scale(1.05) rotate(-2deg); }
  30% { transform: scale(1.1) rotate(2deg); opacity: 0.7; }
  45% { transform: scale(0.95) rotate(-1deg); opacity: 0.5; }
  60% { transform: scale(0.5) rotate(5deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes magicImgSwap {
  0% { opacity: 1; transform: scale(1); }
  30% { opacity: 0; transform: scale(1.2) rotate(180deg); }
  70% { opacity: 0; }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes magicTextReveal {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes magicGlow {
  0% { opacity: 0; }
  20% { opacity: 0.8; }
  40% { opacity: 1; }
  100% { opacity: 0; }
}

.magical-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulseSlow 2s ease-in-out infinite;
}

.magical-btn .sparkle {
  display: inline-block;
  animation: sparkleAnim 1.5s ease-in-out infinite;
}

@keyframes pulseSlow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes sparkleAnim {
  0%, 100% { opacity: 0.8; transform: scale(1) rotate(0deg); }
  25% { opacity: 1; transform: scale(1.3) rotate(5deg); }
  50% { opacity: 0.9; transform: scale(1.1) rotate(0deg); }
  75% { opacity: 1; transform: scale(1.2) rotate(-5deg); }
}

/* ─── CUSTOM CURSOR ─── */
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold, #d4a017);
  box-shadow: 0 0 10px rgba(212,160,23,0.8);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(212,160,23,0.7);
  box-shadow: 0 0 12px rgba(212,160,23,0.35);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

#cursor-ring.cursor-hover {
  width: 62px;
  height: 62px;
  border-color: rgba(230,0,0,0.8);
  background: rgba(230,0,0,0.08);
  box-shadow: 0 0 20px rgba(230,0,0,0.4);
}

#cursor-ring.cursor-down {
  width: 28px;
  height: 28px;
  border-color: rgba(212,160,23,1);
  background: rgba(212,160,23,0.25);
}

@media (hover: none), (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
}
@media (hover: hover) and (pointer: fine) {
  body, a, button, input, textarea, select, .nav-links a, .btn, .nav-cta { cursor: none; }
}

/* ─── DARK THEME OVERRIDES (Tema Principal) ─── */
:root {
  --shadow: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.5), 0 4px 10px rgba(0,0,0,0.4);
}

.nav-links a { color: #ffffff; }
.nav-links a:hover { color: #ffd700; }
.nav-links a.active { color: #0a0a0c; }
.nav-links a.active::after { background: #0a0a0c; }
.nav-links a::after { background: #ffd700; }

.nav.scrolled {
  background: rgba(10,10,12,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.nav-cta {
  background: var(--gold) !important;
  color: #0a0a0c !important;
  border-color: transparent !important;
  box-shadow: 0 4px 18px rgba(255,215,0,0.28) !important;
}

.search-box {
  background: rgba(18,18,22,0.96);
  border: 1px solid #2c2c34;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.search-btn { color: #ffffff; }
.search-btn:hover { background: var(--gold); color: #0a0a0c; }

.hero-light {
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.08) 0%, transparent 60%);
}

.hero-label {
  color: var(--gold);
  border-color: rgba(255,215,0,0.35);
}

.s-head h2 { color: #ffffff; }
.s-head h2 .gold { color: #ffd700; }
.s-head .tag { color: #ffd700; border-color: rgba(255,215,0,0.35); }

.brands-text { color: var(--text-2); }

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--bg-3) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a7a85 !important;
}

.nav-links.active {
  background: rgba(10,10,12,0.98);
  border: 1px solid #2c2c34;
}

.footer {
  background: #0d0d10;
  border-top: 1px solid #2c2c34;
}

.footer-bottom {
  border-top: 1px solid #2c2c34;
  color: #7a7a85;
}

.footer a { color: #b3b3bd; }
.footer a:hover { color: #ffd700; }

.section:nth-child(even) { background: var(--bg-2); }

.parallax-section::after,
.parallax-lg::after {
  background: rgba(0,0,0,0.25);
}

#cursor-dot {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(255,215,0,0.8);
}

#cursor-ring {
  border-color: rgba(255,215,0,0.7);
  box-shadow: 0 0 12px rgba(255,215,0,0.35);
}

#cursor-ring.cursor-hover {
  border-color: rgba(230,0,0,0.8);
  background: rgba(230,0,0,0.08);
  box-shadow: 0 0 20px rgba(230,0,0,0.4);
}

#cursor-ring.cursor-down {
  border-color: rgba(255,215,0,1);
  background: rgba(255,215,0,0.25);
}

@media (hover: none), (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
}
@media (hover: hover) and (pointer: fine) {
  body, a, button, input, textarea, select, .nav-links a, .btn, .nav-cta { cursor: none; }
}

/* ═══ PARALLAX COM MENU (template reutilizável) ═══ */
.px-section {
  height: 100vh;
  min-height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.px-section.px-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,10,18,0.85) 0%, rgba(8,10,18,0.6) 50%, rgba(8,10,18,0.9) 100%);
}

@media (max-width: 768px) {
  .px-section {
    background-attachment: scroll;
  }
}

/* ═══ Submenu: opcao clicada fica com escrita azul (cor do logo) ═══ */
.drop-menu a:active {
  color: #5EBFE4;
}
.drop-menu a.active:active {
  color: #5EBFE4;
}
.drop-menu a:visited {
  color: #5EBFE4;
}

