/* ── VARIABLES & RESET ── */
:root {
  --blue:      #00c8ff;
  --blue-dim:  #0099cc;
  --blue-glow: rgba(0, 200, 255, 0.25);
  --green:     #4ade80;
  --bg:        #060b12;
  --bg2:       #0b1420;
  --bg3:       #0f1e2e;
  --surface:   rgba(255, 255, 255, 0.04);
  --border:    rgba(0, 200, 255, 0.15);
  --white:     #ffffff;
  --gray:      #94a3b8;
  --radius:    14px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── UTILS ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.section     { padding: 88px 0; }
.section-alt { background: var(--bg2); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.label::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

h2.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
h2.section-title span { color: var(--blue); }
.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 520px;
  margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--blue);
  color: #000;
  box-shadow: 0 0 28px rgba(0, 200, 255, 0.4);
}
.btn-primary:hover {
  background: #33d4ff;
  box-shadow: 0 0 44px rgba(0, 200, 255, 0.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue-glow);
  transform: translateY(-2px);
}
.btn-green {
  background: #25d366;
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.35);
}
.btn-green:hover {
  background: #2de070;
  box-shadow: 0 0 38px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}
.btn-nav   { font-size: 14px; padding: 10px 20px; }
.btn-sm    { padding: 7px 15px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }
.btn-menu  { justify-content: center; margin-top: 6px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(6, 11, 18, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.nav-logo img {
  height: 40px; width: 40px;
  object-fit: contain;
  border-radius: 8px;
}
.nav-logo-text {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(6, 11, 18, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--gray);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--white); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 74px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(0, 140, 200, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0, 80, 160, 0.08) 0%, transparent 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--blue);
  text-shadow: 0 0 36px rgba(0, 200, 255, 0.45);
}
.hero-sub {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.7;
}

.hero-paths { display: flex; flex-direction: column; gap: 12px; }
.hero-path-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.hero-path-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 26px; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-label { font-size: 12px; color: var(--gray); margin-top: 3px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.16) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.08); opacity: 0.7; }
}
.hero-logo-wrap img {
  width: 100%; max-width: 300px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 36px rgba(0, 200, 255, 0.48));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 255, 0.12);
  animation: spin-slow linear infinite;
}
.ring-1 { width: 360px; height: 360px; animation-duration: 22s; }
.ring-2 { width: 460px; height: 460px; animation-duration: 32s; animation-direction: reverse; border-style: dashed; }
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── AREA DIVIDER ── */
.area-divider { padding: 0; background: var(--bg2); }
.area-divider-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px;
}
.area-divider-line { flex: 1; height: 1px; background: var(--border); }
.area-divider-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg3);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}

/* ── SERVIÇOS ── */
.services-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.service-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  background: rgba(0, 200, 255, 0.04);
}
.service-col-icon { font-size: 24px; }
.service-col-header h3 { font-size: 15px; font-weight: 700; }
.service-col-header span { font-size: 12px; color: var(--gray); display: block; margin-top: 2px; }
.service-list {
  list-style: none;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #d8e8f0;
  line-height: 1.4;
}
.service-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.services-note {
  margin-top: 28px;
  background: rgba(0, 200, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.services-note p { font-size: 15px; color: #cde8f0; flex: 1; }
.services-note strong { color: var(--blue); }
.note-icon { font-size: 28px; }

/* ── PRODUTOS ── */
.catalog-cta { margin-bottom: 36px; }

/* ── AVAILABLE PRODUCTS ── */
.avail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.avail-grid-single { grid-template-columns: 1fr; }

.avail-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0d0f;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}
.avail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.65);
  border-color: rgba(0, 200, 255, 0.35);
}

.carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0d0d0f;
}
.carousel-track { display: flex; height: 100%; transition: transform 0.35s ease; }
.carousel-slide { min-width: 100%; height: 100%; }
.carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 6;
  transition: background 0.2s;
}
.carousel-btn:hover { background: rgba(0, 0, 0, 0.85); }
.carousel-btn-prev { left: 10px; }
.carousel-btn-next { right: 10px; }
.carousel-dots {
  position: absolute;
  bottom: 88px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 6;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.carousel-dot.active { background: #fff; transform: scale(1.3); }

.avail-status {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.status-semi   { background: rgba(6, 11, 18, 0.82); color: var(--blue);  border: 1px solid rgba(0, 200, 255, 0.5); }
.status-new    { background: rgba(6, 11, 18, 0.82); color: var(--green); border: 1px solid rgba(50, 200, 100, 0.5); }
.status-locked { background: rgba(6, 11, 18, 0.82); color: #c084fc;      border: 1px solid rgba(168, 85, 247, 0.5); }

.avail-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  background: linear-gradient(to top, rgba(4, 8, 14, 1) 0%, rgba(4, 8, 14, 0.85) 50%, transparent 100%);
  padding: 52px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.avail-overlay h3 { font-size: 15px; font-weight: 800; line-height: 1.2; }
.avail-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.avail-spec {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 3px 9px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d0e0ec;
}
.avail-spec.highlight {
  background: rgba(0, 200, 255, 0.1);
  border-color: rgba(0, 200, 255, 0.4);
  color: var(--blue);
}
.avail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.22s;
  backdrop-filter: blur(6px);
}
.avail-btn:hover { background: var(--blue); border-color: var(--blue); color: #000; }

.avail-card-wide {
  grid-column: 1 / -1;
  aspect-ratio: unset;
  height: 200px;
  display: flex;
  flex-direction: row;
}
.avail-card-wide .carousel { position: relative; inset: unset; width: 280px; flex-shrink: 0; }
.avail-card-wide .avail-overlay {
  position: static;
  background: var(--bg3);
  padding: 24px;
  flex: 1;
  justify-content: center;
  border-left: 1px solid var(--border);
}
.avail-card-wide .avail-overlay h3 { font-size: 18px; }
.avail-card-wide .avail-btn { align-self: flex-start; }

/* ── ACCESSORIES ── */
.acc-section { margin-top: 12px; }
.acc-section h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.acc-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.acc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: all 0.22s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(20% - 12px);
  min-width: 140px;
  max-width: 200px;
}
.acc-card:hover {
  border-color: rgba(0, 200, 255, 0.4);
  background: rgba(0, 200, 255, 0.04);
  transform: translateY(-3px);
}
.acc-icon { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.acc-name { font-size: 11px; font-weight: 600; color: #d0e4f0; line-height: 1.3; padding: 10px 10px 2px; }
.acc-tag  { font-size: 10px; color: var(--gray); padding: 0 10px 12px; }

/* ── INSTAGRAM ── */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.ig-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.ig-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.ig-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: #000;
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.ig-info { flex: 1; }
.ig-handle { display: block; font-size: 14px; font-weight: 700; }
.ig-network {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gray);
  margin-top: 2px;
}
.ig-network svg { width: 11px; height: 11px; }
.ig-embed-wrap { background: #fff; display: flex; justify-content: center; }
.ig-embed-wrap .instagram-media {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 280px !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: #fff !important;
  padding: 0 !important;
}
.ig-card-footer { padding: 14px 22px; border-top: 1px solid var(--border); }

/* ── WA BUY CARD ── */
.wa-buy-card {
  background: linear-gradient(135deg, #041f0e, #082818);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 96px;
}
.wa-buy-card h3 { font-size: 21px; font-weight: 800; line-height: 1.3; }
.wa-buy-card h3 span { color: var(--green); }
.wa-buy-card > p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.wa-emoji    { font-size: 38px; }
.wa-features { display: flex; flex-direction: column; gap: 12px; }
.wa-feature {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: #cde8d8;
}
.wa-feature-icon {
  width: 30px; height: 30px; min-width: 30px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.text-green { color: var(--green); }
.wa-number  { text-align: center; font-size: 12px; color: var(--gray); }
.wa-number strong { color: var(--green); }

/* ── SOBRE ── */
.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}
.tech-photo-wrap { position: relative; }
.tech-photo-wrap::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue) 0%, transparent 50%, var(--blue-dim) 100%);
  z-index: 0;
}
.tech-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  display: block;
  position: relative;
  z-index: 1;
}
.tech-badge-wrap { position: absolute; bottom: 20px; left: 20px; right: 20px; z-index: 2; }
.tech-badge {
  background: rgba(6, 11, 18, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tech-badge-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.tech-badge-text strong { display: block; font-size: 13px; font-weight: 700; }
.tech-badge-text span   { font-size: 11px; color: var(--gray); }
.about-content p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 14px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.about-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 13px;
  font-size: 13px;
  font-weight: 500;
  color: #cde8f5;
}

/* ── EQUIPAMENTOS ── */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.equip-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.equip-card:hover {
  border-color: rgba(0, 200, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}
.equip-card:nth-child(1),
.equip-card:nth-child(2) { grid-column: span 2; }
.equip-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.equip-card:hover .equip-img { transform: scale(1.04); }
.equip-info { padding: 12px 14px; }
.equip-info h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.equip-info p  { font-size: 12px; color: var(--gray); line-height: 1.5; }
.equip-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(6, 11, 18, 0.88);
  border: 1px solid rgba(0, 200, 255, 0.5);
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #061522, #0a2035, #061522);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 60px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 560px; height: 280px;
  background: radial-gradient(ellipse, rgba(0, 200, 255, 0.1) 0%, transparent 70%);
}
.cta-banner h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; margin-bottom: 12px; position: relative; }
.cta-banner p  { font-size: 16px; color: var(--gray); margin-bottom: 30px; position: relative; }
.cta-actions   { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.cta-note      { margin-top: 20px; font-size: 13px; color: var(--gray); }

/* ── FOOTER ── */
footer {
  background: #030810;
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand img {
  height: 46px; width: 46px;
  object-fit: contain;
  margin-bottom: 14px;
  border-radius: 8px;
  display: block;
}
.footer-brand p { font-size: 14px; color: var(--gray); max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 14px; color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-meta { font-size: 13px; color: var(--gray); margin-top: 16px; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: var(--gray); }
.footer-credit {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}
.footer-credit:hover { opacity: 0.8; }
.footer-credit-logo { font-weight: 900; letter-spacing: -0.02em; color: #fff; font-size: 14px; }
.footer-credit-logo span {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  animation: slideUp 0.5s ease 0.8s both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.whatsapp-label {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s;
}
.whatsapp-float:hover .whatsapp-label { opacity: 1; transform: translateX(0); }
.whatsapp-btn {
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.42);
  transition: all 0.22s;
  flex-shrink: 0;
}
.whatsapp-float:hover .whatsapp-btn { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.58); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 30px;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--white); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-path-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-logo-wrap img { max-width: 200px; }
  .ring-1 { width: 240px; height: 240px; }
  .ring-2 { width: 320px; height: 320px; }
  .hero-logo-wrap::before { width: 220px; height: 220px; }

  .services-cols { grid-template-columns: 1fr; }

  .avail-grid { grid-template-columns: repeat(2, 1fr); }
  .avail-card-wide { flex-direction: column; height: auto; aspect-ratio: 3/4; }
  .avail-card-wide .carousel { width: 100%; position: absolute; inset: 0; }
  .avail-card-wide .avail-overlay {
    position: absolute;
    border-left: none;
    background: linear-gradient(to top, rgba(4, 8, 14, 1) 0%, rgba(4, 8, 14, 0.85) 50%, transparent 100%);
  }
  .acc-card { width: calc(33.33% - 12px); }

  .social-grid { grid-template-columns: 1fr; }
  .wa-buy-card { position: static; }

  .about-grid { grid-template-columns: 1fr; }
  .tech-photo { aspect-ratio: 4/5; }
  .tech-badge-wrap { left: 12px; right: auto; bottom: 12px; }
  .tech-badge { padding: 10px 13px; gap: 9px; }
  .tech-badge-icon { width: 32px; height: 32px; font-size: 15px; }
  .tech-badge-text strong { font-size: 12px; }
  .tech-badge-text span   { font-size: 11px; }

  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-card:nth-child(1),
  .equip-card:nth-child(2) { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cta-banner { padding: 40px 22px; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .avail-grid { grid-template-columns: 1fr; }
  .acc-card { width: calc(50% - 12px); }
}

/* cookie consent */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  max-width: 720px;
  margin: 0 auto;
  display: none;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #111827;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner button {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 999px;
  transition: opacity 0.2s ease;
}
.cookie-btn-accept {
  border: 0;
  background: #fff;
  color: #111827;
}
.cookie-btn-reject {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #e5e7eb;
}
.cookie-banner button:hover { opacity: 0.85; }
@media (max-width: 540px) {
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-actions { width: 100%; justify-content: center; }
}

/* privacy modal */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.6);
}
.privacy-modal.open { display: flex; }
.privacy-box {
  background: #fff;
  color: #1f2937;
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.privacy-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.privacy-head h2 { margin: 0; font-size: 1.4rem; }
.privacy-head button {
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  color: #9ca3af;
}
.privacy-body { font-size: 0.9rem; line-height: 1.6; color: #4b5563; }
.privacy-body h3 {
  margin: 18px 0 4px;
  font-size: 0.95rem;
  color: #1f2937;
}
.privacy-body a { color: #2563eb; text-decoration: underline; }
