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

:root {
  --cyan:    #52d7f0;
  --cyan-dk: #2bb8d4;
  --bg:      #080e1a;
  --bg2:     #0d1625;
  --bg3:     #111f36;
  --bg4:     #172540;
  --white:   #f5f7fa;
  --muted:   rgba(245,247,250,0.55);
  --dim:     rgba(245,247,250,0.32);
  --border:  rgba(245,247,250,0.07);
  --border2: rgba(82,215,240,0.18);
  --green:   #25D366;
  --nav-h:   64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══════ NAV ═══════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,14,26,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--cyan);
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 18px; height: 18px; }
.nav-logo-name span { font-weight: 300; opacity: 0.75; }

.nav-links { display: none; gap: 0; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 500;
  padding: 8px 13px; border-radius: 6px; transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.04); }

.nav-cta {
  display: none;
  background: var(--cyan); color: #080e1a;
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px;
  padding: 10px 20px; border-radius: 8px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--cyan-dk); transform: translateY(-1px); }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
  background: transparent; border: none; cursor: pointer; border-radius: 6px;
  transition: background .2s; flex-shrink: 0;
}
.hamburger:hover { background: rgba(255,255,255,.06); }
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s; transform-origin: center;
}
.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); }

.nav-partner {
  display: none;
  color: var(--cyan); font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 6px;
  border: 1px solid rgba(82,215,240,0.28);
  text-decoration: none; white-space: nowrap;
  transition: border-color .2s, background .2s;
}
.nav-partner:hover { border-color: var(--cyan); background: rgba(82,215,240,0.08); }
@media (min-width: 1024px) { .nav-partner { display: inline-flex; align-items: center; } }

.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg2);
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 24px) 6% 40px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-links {
  list-style: none; display: flex; flex-direction: column; gap: 0;
  margin-bottom: 32px; flex: 1;
}
.mobile-nav-links a {
  display: block; color: var(--muted); text-decoration: none;
  font-size: 22px; font-weight: 700;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}
.mobile-nav-links a:hover { color: var(--cyan); padding-left: 6px; }
.mobile-nav-links a.is-cta { color: var(--cyan); }
.mobile-nav-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green); color: #fff; font-weight: 700; font-size: 16px;
  padding: 16px 24px; border-radius: 10px; text-decoration: none;
  transition: opacity .2s;
}
.mobile-nav-cta:hover { opacity: .9; }
.mobile-nav-cta svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

@media (min-width: 1024px) {
  :root { --nav-h: 72px; }
  nav { padding: 0 7%; }
  .nav-links { display: flex; }
  .nav-cta { display: block; }
  .hamburger { display: none; }
  .mobile-nav { display: none; }
}

/* ═══════ HERO ═══════ */
#hero {
  min-height: 100svh; position: relative;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: calc(var(--nav-h) + 56px) 5% 80px;
  overflow: hidden;
}
.hero-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(8,14,26,.94) 0%,
    rgba(8,14,26,.82) 55%,
    rgba(8,14,26,.4) 100%
  );
}
.hero-dots {
  position: absolute; bottom: 28px; left: 5%;
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 24px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.2); cursor: pointer;
  transition: background .3s, width .3s;
}
.hero-dot.active { background: var(--cyan); width: 40px; }
.hero-content { position: relative; z-index: 2; max-width: 680px; width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(82,215,240,.1); border: 1px solid rgba(82,215,240,.25);
  color: var(--cyan); font-size: 10px; font-weight: 600; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; text-transform: uppercase;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
#hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 5.5vw, 54px);
  font-weight: 900; line-height: 1.1;
  color: var(--white); letter-spacing: -.5px; margin-bottom: 20px;
}
#hero h1 span { color: var(--cyan); }
.hero-sub {
  font-size: clamp(14px, 2.8vw, 17px);
  color: var(--muted); max-width: 500px;
  margin-bottom: 36px; line-height: 1.8;
}
.hero-btns {
  display: flex; gap: 12px; flex-direction: column; margin-bottom: 44px;
}
.btn-wpp {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green); color: #fff;
  font-weight: 700; font-size: 14px;
  padding: 14px 26px; border-radius: 8px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.btn-wpp:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.4); }
.btn-wpp svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; border: 1px solid rgba(255,255,255,.18);
  color: var(--muted); font-size: 13px; font-weight: 500;
  padding: 14px 26px; border-radius: 8px; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--white); }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--dim); font-weight: 500;
}
.trust-item svg { width: 13px; height: 13px; stroke: var(--cyan); fill: none; stroke-width: 2; flex-shrink: 0; }
@media (min-width: 480px) { .hero-btns { flex-direction: row; } }
@media (min-width: 1024px) {
  #hero { padding: calc(var(--nav-h) + 72px) 7% 100px; }
  .hero-dots { left: 7%; }
}

/* ═══════ METRICS STRIP ═══════ */
.metrics-strip {
  background: var(--bg2);
  border-top: 1px solid rgba(82,215,240,.1);
  border-bottom: 1px solid var(--border);
}
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.metric-item {
  padding: 28px 12px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.metric-item:last-child { border-right: none; }
.metric-item:hover { background: rgba(82,215,240,.03); }
.metric-val {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 5vw, 42px);
  font-weight: 900; color: var(--cyan);
  line-height: 1; margin-bottom: 6px; letter-spacing: -1px;
}
.metric-label {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted);
}
@media (min-width: 768px) {
  .metric-item { padding: 36px 24px; }
  .metric-label { font-size: 11px; }
}

/* ═══════ SECTION HELPERS ═══════ */
.section-label {
  display: block; font-size: 10px; font-weight: 600; letter-spacing: 3px;
  color: var(--cyan); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 5vw, 46px);
  font-weight: 900; line-height: 1.1; letter-spacing: -.5px; margin-bottom: 14px;
}
.section-sub {
  font-size: clamp(14px, 2.5vw, 16px); color: var(--muted);
  max-width: 520px; line-height: 1.85; margin-bottom: 40px;
}
section { padding: 72px 5%; }
@media (min-width: 1024px) { section { padding: 96px 7%; } }

/* ═══════ PONTOS DE MÍDIA ═══════ */
#pontos { background: var(--bg); }
.pontos-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.pontos-map {
  border-radius: 12px; overflow: hidden; height: 300px;
  border: 1px solid var(--border2);
}
.pontos-map iframe { width: 100%; height: 100%; display: block; border: 0; }
.pontos-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-top: 3px solid var(--cyan); border-radius: 12px; padding: 28px;
}
.pontos-card-name { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.pontos-card-addr {
  font-size: 13px; color: var(--muted); margin-bottom: 22px;
  display: flex; align-items: center; gap: 7px;
}
.pontos-card-addr svg { width: 14px; height: 14px; stroke: var(--cyan); fill: none; stroke-width: 2; flex-shrink: 0; }
.pontos-specs { display: flex; flex-direction: column; gap: 0; margin-bottom: 20px; }
.pontos-spec {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 12.5px;
}
.pontos-spec:last-child { border-bottom: none; }
.pontos-spec__label { color: var(--muted); font-weight: 500; }
.pontos-spec__value { color: var(--white); font-weight: 700; }
.pontos-status {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,193,7,.08); border: 1px solid rgba(255,193,7,.25);
  color: #ffc107; font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 7px 16px; border-radius: 100px; text-transform: uppercase;
}
.pontos-status::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #ffc107; flex-shrink: 0; animation: blink 1.5s ease-in-out infinite;
}
.pontos-scarcity {
  background: rgba(82,215,240,.05); border: 1px solid rgba(82,215,240,.14);
  border-left: 3px solid var(--cyan); border-radius: 8px;
  padding: 16px 20px; margin-top: 24px;
  font-size: 13px; color: var(--muted); line-height: 1.75;
}
.pontos-scarcity strong { color: var(--white); }
@media (min-width: 1024px) {
  .pontos-grid { grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
  .pontos-map { height: 440px; }
}

/* ═══════ COMO FUNCIONA ═══════ */
#como-funciona { background: var(--bg2); }
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px;
}
.step-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .3s;
}
.step-card:hover { border-color: var(--border2); }
.step-n {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px; font-weight: 900; color: var(--cyan);
  opacity: .14; line-height: 1; letter-spacing: -4px;
}
.step-icon-wrap {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(82,215,240,.08); border: 1px solid rgba(82,215,240,.2);
  display: flex; align-items: center; justify-content: center;
}
.step-icon-wrap svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }
.step-title { font-size: 17px; font-weight: 700; line-height: 1.35; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.75; }
.specs-box {
  background: var(--bg3); border: 1px solid var(--border);
  border-left: 3px solid var(--cyan); border-radius: 8px;
  padding: 18px 22px; font-size: 12.5px; color: var(--muted); line-height: 2;
}
.specs-box strong { color: var(--cyan); font-weight: 700; }
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

/* ═══════ PLANOS ═══════ */
#planos { background: var(--bg); }
.plans-promo {
  background: rgba(82,215,240,.06); border: 1px solid rgba(82,215,240,.2);
  border-radius: 10px; padding: 18px 24px; margin-bottom: 28px;
  font-size: 13px; color: var(--muted); line-height: 1.8;
}
.plans-promo strong { color: var(--white); }
.plans-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px;
}
.plan-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
}
.plan-card.featured {
  background: var(--bg4); border-color: var(--cyan);
  box-shadow: 0 0 40px rgba(82,215,240,.12);
}
.plan-head {
  background: var(--bg2); border-bottom: 1px solid var(--border); padding: 16px 20px;
}
.plan-card.featured .plan-head { background: var(--cyan); }
.plan-period {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
}
.plan-card.featured .plan-period { color: var(--bg); }
.plan-body {
  padding: 24px 20px; flex: 1;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
}
.plan-cur { font-size: 12px; font-weight: 700; color: var(--muted); line-height: 1; }
.plan-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 38px; font-weight: 900; color: var(--cyan);
  letter-spacing: -2px; line-height: 1;
}
.plan-card.featured .plan-price { color: var(--white); }
.plan-unit { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.plan-badge {
  margin-top: 12px; align-self: flex-start;
  background: var(--cyan); color: var(--bg);
  font-size: 9px; font-weight: 800; letter-spacing: .5px;
  padding: 4px 14px; border-radius: 100px; text-transform: uppercase;
}
.plans-note {
  background: var(--bg3); border: 1px solid var(--border);
  border-left: 3px solid var(--cyan); border-radius: 8px;
  padding: 16px 22px; font-size: 12.5px; color: var(--muted); line-height: 1.8;
  margin-bottom: 20px;
}
.plans-note strong { color: var(--white); }
.plans-cta {
  background: var(--bg4); border: 1px solid rgba(82,215,240,.18);
  border-radius: 10px; padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.plans-cta__text { font-size: 16px; font-weight: 700; }
.plans-cta__text span { color: var(--cyan); }
.plans-cta__sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
@media (min-width: 640px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .plans-grid { grid-template-columns: repeat(4, 1fr); } }

/* ═══════ SEGMENTOS ═══════ */
#segmentos { background: var(--bg2); }
.seg-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.seg-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 10px; padding: 22px 18px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color .3s, background .3s;
}
.seg-card:hover { border-color: var(--border2); background: rgba(82,215,240,.03); }
.seg-emoji { font-size: 28px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.seg-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.seg-desc { font-size: 12.5px; color: var(--muted); line-height: 1.65; }
@media (min-width: 640px) { .seg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .seg-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════ PORTFÓLIO ═══════ */
#galeria { background: var(--bg); }

.panel-featured-img {
  position: relative; border-radius: 14px; overflow: hidden;
  margin-bottom: 40px; border: 1px solid var(--border2);
}
.panel-featured-img img {
  width: 100%; display: block; object-fit: cover;
  max-height: 520px; filter: brightness(.88);
  transition: transform .7s ease;
}
.panel-featured-img:hover img { transform: scale(1.02); filter: brightness(.96); }
.panel-featured-badge {
  position: absolute; bottom: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(8,14,26,.82); border: 1px solid rgba(82,215,240,.28);
  color: var(--white); font-size: 11px; font-weight: 600;
  padding: 8px 18px; border-radius: 100px; backdrop-filter: blur(8px);
}
.panel-featured-badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}

.dep-slider {
  overflow-x: clip; position: relative;
  transition: height .45s cubic-bezier(.4,0,.2,1);
}
.dep-slider__track {
  display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform; align-items: flex-start;
}
.dep-slide {
  min-width: 100%; flex-shrink: 0;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
  box-sizing: border-box;
}
.dep-stars { color: var(--cyan); font-size: 15px; letter-spacing: 3px; margin-bottom: 16px; }
.dep-text {
  font-size: 15px; color: var(--muted); line-height: 1.85;
  font-style: italic; margin-bottom: 22px;
}
.dep-author { font-size: 14px; font-weight: 700; }
.dep-role { font-size: 11px; color: var(--dim); margin-top: 3px; }
.dep-slider__dots {
  display: flex; justify-content: center; gap: 8px; padding: 18px 0 0;
}
.dep-slider__dot {
  width: 26px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.18); border: none; cursor: pointer;
  transition: background .3s, width .3s; padding: 0;
}
.dep-slider__dot.active { background: var(--cyan); width: 40px; }

/* ═══════ CTA FINAL ═══════ */
#cta {
  background: var(--bg2);
  border-top: 1px solid rgba(82,215,240,.1);
  text-align: center; position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 50%, rgba(82,215,240,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 6vw, 60px);
  font-weight: 900; letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px;
}
.cta-title span { color: var(--cyan); }
.cta-sub {
  font-size: clamp(14px, 2.5vw, 16px); color: var(--muted);
  max-width: 460px; margin: 0 auto 36px; line-height: 1.8;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ═══════ INSTALE / COMPRAR PAINEL ═══════ */
#instale {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-top: 2px solid var(--border2);
  padding: 80px 5%;
}
.instale-wrap { max-width: 960px; margin: 0 auto; }

.instale-hero { text-align: center; margin-bottom: 52px; }
.instale-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 3px; color: var(--cyan); text-transform: uppercase;
  border: 1px solid var(--border2); border-radius: 20px;
  padding: 6px 16px; margin-bottom: 20px;
}
.instale-hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 900; line-height: 1.1; letter-spacing: -.5px; margin-bottom: 16px;
}
.instale-hero h2 span { color: var(--cyan); }
.instale-hero p { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.75; }

.panel-carousel {
  position: relative; border-radius: 16px; overflow: hidden;
  margin-bottom: 52px; background: var(--bg4); border: 1px solid var(--border);
}
.panel-carousel__track {
  display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); will-change: transform;
}
.panel-carousel__slide {
  min-width: 100%; height: clamp(220px, 45vw, 480px); flex-shrink: 0; overflow: hidden;
}
.panel-carousel__slide img {
  width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.9);
}
.panel-carousel__dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 14px 0; background: rgba(8,14,26,.7);
}
.panel-carousel__dot {
  width: 26px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.2); border: none; cursor: pointer;
  transition: background .3s, width .3s; padding: 0;
}
.panel-carousel__dot.active { background: var(--cyan); width: 40px; }

.panel-showcase {
  display: grid; grid-template-columns: 1fr;
  gap: 32px; margin-bottom: 36px;
}
@media (min-width: 860px) {
  .panel-showcase { grid-template-columns: 1fr 1fr; align-items: start; gap: 40px; }
}
.panel-showcase__img {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); position: sticky; top: 88px;
}
.panel-showcase__img img { width: 100%; display: block; object-fit: cover; }
.panel-showcase__info { display: flex; flex-direction: column; gap: 28px; }

.panel-specs__title {
  font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px;
}
.panel-specs__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
@media (min-width: 640px) { .panel-specs__grid { grid-template-columns: repeat(4, 1fr); } }
.panel-specs__grid--vertical { grid-template-columns: repeat(2, 1fr) !important; margin-bottom: 0; }
.panel-spec-item {
  background: var(--bg3); padding: 16px 18px;
  display: flex; flex-direction: column; gap: 5px; transition: background .2s;
}
.panel-spec-item:hover { background: var(--bg4); }
.panel-spec-key { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); }
.panel-spec-val { font-size: 14px; font-weight: 700; color: var(--white); }

.panel-showcase__diffs { display: flex; flex-direction: column; gap: 14px; }
.panel-showcase__diff {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg4); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
  transition: border-color .2s;
}
.panel-showcase__diff:hover { border-color: var(--border2); }
.panel-showcase__diff-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.panel-showcase__diff strong { display: block; font-size: 13px; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: .3px; margin-bottom: 4px; }
.panel-showcase__diff p { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin: 0; }

.panel-comercial {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg4); border: 1px solid var(--border2);
  border-left: 3px solid var(--cyan); border-radius: 10px;
  padding: 20px 24px; margin-bottom: 36px;
}
.panel-comercial__icon { font-size: 28px; flex-shrink: 0; }
.panel-comercial__text { display: flex; flex-direction: column; gap: 4px; }
.panel-comercial__text strong { font-size: 14px; font-weight: 700; color: var(--white); }
.panel-comercial__text span { font-size: 14px; color: var(--muted); }

.instale-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-instale-wpp {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff; font-family: inherit;
  font-weight: 700; font-size: 15px; padding: 15px 30px;
  border-radius: 9px; text-decoration: none; transition: filter .2s, transform .2s;
}
.btn-instale-wpp:hover { filter: brightness(1.12); transform: translateY(-2px); }
.btn-instale-wpp svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.btn-instale-orc {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  border: 1px solid var(--border2); font-family: inherit;
  font-weight: 600; font-size: 15px; padding: 15px 30px;
  border-radius: 9px; text-decoration: none; transition: border-color .2s, color .2s, transform .2s;
}
.btn-instale-orc:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }

.hero-instale-hint { margin-top: 20px; }
.btn-hero-instale {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: rgba(245,247,250,.45);
  font-family: inherit; font-size: 12px; font-weight: 500;
  padding: 7px 14px; border-radius: 6px;
  border: 1px solid rgba(245,247,250,.12);
  text-decoration: none; letter-spacing: .2px; transition: color .2s, border-color .2s;
}
.btn-hero-instale:hover { color: var(--white); border-color: rgba(245,247,250,.3); }
@media (min-width: 1024px) { #instale { padding: 96px 7%; } }

/* ═══════ FOOTER ═══════ */
footer {
  background: var(--bg2); border-top: 1px solid var(--border); padding: 48px 5%;
}
.footer-top {
  display: flex; flex-direction: column; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px;
  margin-bottom: 12px;
}
.footer-logo span { font-weight: 300; opacity: .75; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-nav-group h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-nav-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-group a {
  font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s;
}
.footer-nav-group a:hover { color: var(--cyan); }
.footer-nav-group a.is-panel { color: #fbbf24; }
.footer-bottom { display: flex; flex-direction: column; gap: 6px; }
.footer-copy { font-size: 11px; color: var(--dim); }
.footer-site { font-size: 11px; color: var(--cyan); font-weight: 600; }
@media (min-width: 768px) {
  footer { padding: 48px 6%; }
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 1024px) { footer { padding: 48px 7%; } }

/* ═══════ WPP FLOAT ═══════ */
.wpp-float {
  position: fixed; bottom: 20px; right: 16px; z-index: 9999;
  width: 52px; height: 52px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.5); text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: floatPop .5s cubic-bezier(.34,1.56,.64,1) 1.2s both;
}
.wpp-float:hover { transform: scale(1.1); box-shadow: 0 10px 40px rgba(37,211,102,.65); }
.wpp-float svg { width: 26px; height: 26px; fill: white; }
.wpp-tooltip {
  position: absolute; right: 64px;
  background: var(--bg2); border: 1px solid rgba(82,215,240,.2);
  color: var(--white); font-size: 12px; font-weight: 600;
  padding: 8px 14px; border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.wpp-float:hover .wpp-tooltip { opacity: 1; }
@keyframes floatPop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
@media (min-width: 768px) {
  .wpp-float { width: 60px; height: 60px; bottom: 28px; right: 24px; }
  .wpp-float svg { width: 30px; height: 30px; }
  .wpp-tooltip { right: 72px; }
}

/* ═══════ UTILITIES ═══════ */
@media (max-width: 479px) {
  section { padding: 56px 4%; }
  #instale { padding: 60px 4%; }
  .hero-trust { gap: 10px; }
  .trust-item { font-size: 10px; }
}
@media (max-width: 359px) {
  :root { --nav-h: 56px; }
  nav { padding: 0 4%; }
  .nav-logo { font-size: 16px; }
}
@media (max-width: 767px) {
  .hamburger { width: 44px; height: 44px; }
  .btn-wpp, .btn-outline { min-height: 44px; }
}
