:root {
  --blue: #020617;
  --blue-mid: #0f172a;
  --blue-light: #1e293b;
  --accent: #00d4ff;
  --accent-hot: #0072ff;
  --accent-purple: #8b5cf6;
  --white: #f8fafc;
  --gray: #94a3b8;
  --card-bg: rgba(15, 23, 42, 0.6);
  --border: rgba(0, 212, 255, 0.15);
  --glow: 0 0 40px rgba(0, 212, 255, 0.1);
  --glow-strong: 0 0 60px rgba(0, 212, 255, 0.2);
  --content-max: 1280px;
  --content-wide: 1440px;
}

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

html { 
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--blue);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
}

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: var(--blue-mid);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: logoPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}

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

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(16, 177, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot), var(--accent-purple));
  background-size: 200% 100%;
  animation: loadingBar 2s ease-in-out forwards;
}

@keyframes loadingBar {
  0% { width: 0; background-position: 0% center; }
  50% { width: 70%; background-position: 100% center; }
  100% { width: 100%; background-position: 0% center; }
}

/* ── 3D BACKGROUND CANVAS ── */
.bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: fadeInCanvas 1.5s ease forwards;
}

@keyframes fadeInCanvas {
  to { opacity: 1; }
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1; opacity: .4;
}

/* ── GRID LINES ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(16, 177, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 177, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 2;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(24px, 4vw, 64px);
  background: rgba(2, 10, 26, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--blue-mid);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nav-logo span {
  font-weight: 800; font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo span em {
  color: var(--accent); font-style: normal; font-weight: 300;
}

.nav-links {
  display: flex; gap: 32px; list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: .88rem; font-weight: 500;
  letter-spacing: .5px; text-transform: uppercase;
  transition: color .25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--accent);
  transform: scaleX(0); transition: transform .25s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  color: #fff !important; font-weight: 700 !important;
  padding: 10px 22px; border-radius: 8px;
  transition: transform .2s, box-shadow .2s !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(16, 177, 255, 0.4) !important; color: #fff !important; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
#home {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px clamp(24px, 5vw, 64px) 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16, 177, 255, 0.1);
  border: 1px solid rgba(16, 177, 255, 0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: .78rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent); margin: 0 auto 28px;
  animation: fadeUp .6s ease both;
}

.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s infinite;
}

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }

h1 {
  font-weight: 900; font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05; letter-spacing: -2px;
  animation: fadeUp .7s .1s ease both;
  text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

h1 .highlight {
  background: linear-gradient(90deg, var(--accent), var(--accent-hot), var(--accent-purple));
  background-size: 200% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-sub {
  margin: 20px auto 40px;
  color: var(--gray); font-size: 1.05rem; line-height: 1.7;
  max-width: 720px;
  animation: fadeUp .7s .2s ease both;
}

.hero-buttons {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .7s .3s ease both;
}

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: .95rem; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer; border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  color: #fff;
  box-shadow: 0 4px 24px rgba(16, 177, 255, 0.3);
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(16, 177, 255, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(37,211,102,0.45); }

.hero-stats {
  display: flex; gap: 40px; margin-top: 60px; justify-content: center;
  animation: fadeUp .7s .4s ease both;
}

.stat strong {
  display: block;
  font-size: 2.2rem; font-weight: 900; color: var(--accent);
}

.stat span { font-size: .82rem; color: var(--gray); }

.hero-showcase {
  display: grid;
  gap: 24px;
  width: 100%;
  align-items: stretch;
}

.hero-showcase .game-card {
  order: 2;
}

.game-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(180deg, #0a1733, #071126);
  border: 1px solid rgba(16, 177, 255, 0.28);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.game-card::before {
  display: none;
}

.game-card-head,
.game-footer,
.game-result-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.game-card-head {
  text-align: center;
  justify-content: center;
  flex-wrap: wrap;
}

.game-kicker {
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  text-align: center;
}

.game-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.1;
  text-align: center;
}

.game-score-pill {
  min-width: 98px;
  padding: 12px 14px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.game-score-pill span {
  display: block;
  font-size: .68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.game-score-pill strong,
#lume-game-score {
  font-family: 'Press Start 2P', cursive;
  font-size: 1rem;
  color: #fff;
}

.game-intro {
  margin: 16px 0 18px;
  color: var(--gray);
  line-height: 1.7;
  font-size: .92rem;
  text-align: center;
  max-width: 52ch;
  align-self: center;
}

.game-shell {
  position: relative;
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(20, 33, 63, 0.92), rgba(6, 12, 26, 0.98));
  min-height: 360px;
}

.lume-game-canvas {
  display: block;
  width: 100%;
  height: 360px;
}

.game-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 10, 26, 0.78);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.game-overlay.show {
  opacity: 1;
  visibility: visible;
}

.game-result-card {
  width: min(100%, 420px);
  border-radius: 22px;
  background: rgba(5, 16, 37, 0.96);
  border: 1px solid rgba(16, 177, 255, 0.28);
  padding: 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}

.game-result-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .72rem;
  margin-bottom: 12px;
}

.game-result-card h4 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.game-result-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: .9rem;
}

.game-result-actions {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.game-controls {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.game-controls button {
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  color: var(--white);
  font-family: 'Press Start 2P', cursive;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.game-controls button:hover,
.game-controls button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(16, 177, 255, 0.4);
  box-shadow: 0 16px 28px rgba(16, 177, 255, 0.16);
  outline: none;
}

.game-controls button:active {
  transform: translateY(0);
}

.game-controls button:first-child {
  grid-column: 1 / -1;
}

.game-footer {
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.game-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: .8rem;
}

.console-card {
  background: linear-gradient(180deg, #0a1733, #071126);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 38px 32px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.console-img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 26px;
  background: var(--blue-light);
}

.console-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.console-emoji { font-size: 5rem; margin-bottom: 12px; display: block; }

.console-card h3 {
  font-size: 1.4rem; font-weight: 800; margin: auto 0 10px;
}

.console-card p {
  line-height: 1.7;
}

.console-price {
  font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin: 8px 0;
}

.console-badge-list {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 14px;
}

.console-card .btn-sm {
  margin-top: auto !important;
}

.tag {
  font-size: .73rem; font-weight: 600; letter-spacing: .5px;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--accent);
}

@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ── SECTIONS ── */
section {
  padding: 80px clamp(24px, 5vw, 64px);
  position: relative;
  z-index: 10;
}

.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}

.section-label::before {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--accent); border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 16px;
  text-align: center;
}

.section-sub {
  color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 600px;
  margin: 0 auto 60px; text-align: center;
}

.section-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tag-list {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PRODUTOS ── */
#produtos { background: linear-gradient(180deg, transparent, rgba(13,32,69,0.4), transparent); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-content: center;
  max-width: var(--content-wide);
  margin: 0 auto;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  backdrop-filter: blur(20px);
  transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative; overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card .btn-sm {
  margin-top: auto;
}

.product-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity .3s;
}

.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.4), var(--glow); border-color: rgba(16, 177, 255, 0.35); }
.product-card:hover::before { opacity: 1; }

.promo-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--accent-hot), #e50000);
  color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
  background: var(--blue-light);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.1rem; font-weight: 800; margin-bottom: 6px;
}

.product-desc {
  color: var(--gray); font-size: .87rem; line-height: 1.6; margin-bottom: 18px;
}

.product-price {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.7rem; font-weight: 900;
  color: var(--accent); margin-bottom: 4px;
}

.product-installment {
  font-size: .78rem; color: var(--gray); margin-bottom: 20px;
  text-align: center; width: 100%;
}

.btn-sm {
  padding: 10px 20px; font-size: .87rem; border-radius: 8px; width: 100%;
  justify-content: center;
}

/* ── SERVIÇOS ── */
#servicos { background: linear-gradient(180deg, transparent, rgba(26,58,110,0.15), transparent); }

.services-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 24px;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 40px 30px;
  backdrop-filter: blur(20px);
  transition: all .4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative; overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card .btn {
  margin-top: auto;
}

.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s;
}

.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(16, 177, 255, 0.15), rgba(124, 58, 237, 0.15));
  border: 1px solid rgba(16, 177, 255, 0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  margin-left: auto; margin-right: auto;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(16, 177, 255, 0.25), rgba(124, 58, 237, 0.25));
  box-shadow: 0 0 30px rgba(16, 177, 255, 0.3);
}

.service-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.15rem; font-weight: 800; margin-bottom: 10px;
}

.service-card p { color: var(--gray); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; text-align: center; width: 100%; }

.service-perks { list-style: none; margin-bottom: 26px; padding: 0; width: 100%; }

.service-perks li {
  font-size: .87rem; color: var(--gray);
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 8px;
  text-align: center;
}

.service-perks li::before { content: '✓'; color: var(--accent); font-weight: 800; font-size: .9rem; }

/* ── SOBRE ── */
#sobre {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 60px;
}

.sobre-wrap {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 60px !important;
  max-width: var(--content-max);
  margin: 0 auto;
}

.sobre-visual {
  position: relative;
}

.sobre-main-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 30px; padding: 40px;
  backdrop-filter: blur(20px);
  box-shadow: var(--glow-strong);
  text-align: center;
  transition: all .5s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo-big {
  width: 90px; height: 90px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot), var(--accent-purple));
  background-size: 200% 200%;
  border-radius: 22px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 28px; color: #fff;
  box-shadow: 0 8px 32px rgba(16, 177, 255, 0.35), 0 0 60px rgba(16, 177, 255, 0.2);
  animation: gradientShift 4s ease infinite;
}

.sobre-main-card h3 {
  font-family: 'Exo 2', sans-serif; font-size: 1.3rem; font-weight: 800;
}

.sobre-main-card p { color: var(--gray); font-size: .9rem; margin-top: 8px; }

.sobre-float {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  border-radius: 16px; padding: 18px 24px;
  box-shadow: 0 12px 30px rgba(16, 177, 255, 0.3);
  color: #fff;
}

.sobre-float strong { display: block; font-family: 'Exo 2', sans-serif; font-size: 1.6rem; font-weight: 900; }
.sobre-float span { font-size: .78rem; font-weight: 700; }

.values-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
  gap: 16px; 
  margin-top: 36px;
  width: 100%;
}

.value-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
  backdrop-filter: blur(10px);
  transition: all .3s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

.value-item:hover { 
  border-color: rgba(16, 177, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(16, 177, 255, 0.15);
}

.value-item .vi { font-size: 1.4rem; margin-bottom: 8px; display: block; }
.value-item strong { display: block; font-family: 'Exo 2', sans-serif; font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.value-item span { font-size: .82rem; color: var(--gray); display: block; }

/* ── CONTATO ── */
#contato { background: linear-gradient(180deg, transparent, rgba(13,32,69,0.5)); }

.contato-grid { 
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
}

.contato-info {
  text-align: center;
}

.contato-info h2 {
  font-family: 'Exo 2', sans-serif; font-size: 2rem; font-weight: 900;
  margin: 16px 0 12px;
}

.contato-info p { color: var(--gray); font-size: .95rem; line-height: 1.7; margin-bottom: 32px; }

.contact-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; margin-bottom: 16px;
}

.contact-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(16, 177, 255, 0.1); border: 1px solid rgba(16, 177, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent); flex-shrink: 0;
  margin-bottom: 4px;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-item:hover .contact-icon {
  background: rgba(16, 177, 255, 0.2);
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(16, 177, 255, 0.3);
}

.contact-item strong { display: block; font-size: .88rem; font-weight: 600; }
.contact-item span { font-size: .82rem; color: var(--gray); }

.form-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 30px; padding: 40px;
  backdrop-filter: blur(20px);
  width: 100%;
  max-width: 720px;
  transition: all .5s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-card h3 {
  font-family: 'Exo 2', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block; font-size: .82rem; font-weight: 600; color: var(--gray);
  margin-bottom: 8px; letter-spacing: .3px; text-align: center;
}

.form-group input,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(2, 10, 26, 0.6); border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px; color: var(--white);
  font-family: 'Inter', sans-serif; font-size: .92rem;
  transition: border-color .25s, box-shadow .25s;
  outline: none; resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(16, 177, 255, 0.12);
}

.form-group textarea { min-height: 110px; }

/* ── FOOTER ── */
footer {
  background: var(--blue-mid);
  border-top: 1px solid var(--border);
  padding: 40px 6vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  position: relative; z-index: 1;
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--white);
  text-decoration: none;
}

.footer-logo .fi {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; color: #fff;
}

.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--gray); font-size: .87rem; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }

.footer-copy { color: var(--gray); font-size: .8rem; }

/* ── WHATSAPP FLOAT ── */
.wpp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  text-decoration: none; z-index: 999;
  animation: wppPulse 2s ease-in-out infinite;
  transition: transform .2s;
}

.wpp-float:hover { transform: scale(1.12); }

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

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s cubic-bezier(0.23, 1, 0.32, 1), transform .8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (min-width: 1101px) {
  #home {
    width: min(100%, var(--content-wide));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
    align-items: start;
  }

  .hero-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    justify-self: center;
  }

  .hero-badge {
    margin: 0 auto 28px;
  }

  .hero-sub {
    margin: 20px auto 40px;
    max-width: 760px;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 0;
    max-width: 100%;
    justify-self: stretch;
    animation: none;
  }

  .hero-visual {
    margin-top: 60px;
    max-width: 500px;
    justify-self: center;
  }

  #produtos > .reveal:first-child,
  #servicos > .reveal:first-child {
    width: min(100%, var(--content-wide));
    margin: 0 auto 56px;
  }

  #servicos > .reveal:last-child {
    width: min(100%, 1280px);
    margin-left: auto;
    margin-right: auto;
  }

  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  #sobre {
    text-align: left;
  }

  .sobre-wrap {
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    justify-content: space-between;
    gap: clamp(48px, 6vw, 88px) !important;
  }

  .sobre-wrap > div:first-child {
    flex: 1.15;
    min-width: 0;
  }

  .sobre-visual {
    flex: 0.85;
    width: 100%;
    max-width: 460px;
  }

  #sobre .section-label,
  #sobre .section-title,
  #sobre .section-text {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #contato .section-label,
  #contato h2,
  #contato p {
    text-align: left;
  }

  #contato .section-label {
    justify-content: flex-start;
  }

  .contato-grid {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(40px, 5vw, 72px);
  }

  .contato-info,
  .form-card {
    flex: 1;
  }

  .contato-info {
    text-align: left;
    align-self: center;
  }

  .contact-item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .contact-icon {
    margin-bottom: 0;
  }

  .form-card h3,
  .form-group label {
    text-align: left;
  }
}

@media (max-width: 1100px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    padding: 18px 6vw;
  }

  body.menu-open { overflow: hidden; }
  body.menu-open::after {
    content: '';
    position: fixed; inset: 0;
    background: transparent;
    z-index: 1050;
    pointer-events: auto;
  }


  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background: #020a1a;
    border-left: 1px solid var(--border);
    padding: 120px 40px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    list-style: none; margin: 0;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .nav-links.open {
    right: 0;
    box-shadow: -10px 0 50px rgba(0,0,0,0.8);
  }

  .nav-links li { width: 100%; }
  .nav-links a { font-size: 1.1rem; width: 100%; display: block; }
  .nav-cta { text-align: center; }

  .hamburger { display: flex; z-index: 1200; }

  /* Animate hamburger → X */
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  #home {
    flex-direction: column;
    padding-top: 140px;
    padding-bottom: 60px;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-visual {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    animation: none !important;
    margin-top: 48px;
    max-width: 620px;
    align-self: center;
  }

  .hero-visual {
    margin-top: 40px;
    max-width: 280px;
  }

  .hero-stats { gap: 24px; justify-content: center; }

  #sobre { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .sobre-visual { display: block; max-width: 400px; margin: 0 auto; }
  .sobre-wrap { text-align: center; }
  .values-grid { justify-content: center; }

  .contato-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .contact-item { justify-content: center; }

  footer { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 540px) {
  h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .hero-visual {
    max-width: 220px;
  }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; flex-direction: column; align-items: center; }
  .stat { text-align: center; }
}

/* divider */
.divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  position: relative; z-index: 1;
}
