/* ==========================================================================
   Zippy Empresas — Design System compartilhado (B2B / PME)
   Carregar DEPOIS de css/styles.css. Usa os tokens HSL existentes.
   Marca: teal #0ABAB5 → ciano #00FFE1
   ========================================================================== */

:root {
  --zp-teal: #0ABAB5;
  --zp-teal-dark: #067a74; /* escurecido p/ contraste AA em textos pequenos (auditoria) */
  --zp-cyan: #00FFE1;
  --zp-grad: linear-gradient(135deg, #0ABAB5 0%, #00CFC8 55%, #00FFE1 100%);
  --zp-ink: hsl(var(--foreground));
  --zp-muted: hsl(var(--muted-foreground));
  --zp-maxw: 1200px;
}

body.zp {
  font-family: 'Titillium Web', sans-serif;
  color: var(--zp-ink);
  background: hsl(var(--background));
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

.zp h1, .zp h2, .zp h3, .zp .mono { font-family: 'Kode Mono', monospace; }

/* Layout ------------------------------------------------------------------ */
.zp-container { max-width: var(--zp-maxw); margin: 0 auto; padding: 0 20px; }
.zp-section { padding: 84px 0; }
.zp-section--tight { padding: 56px 0; }
.zp-section--alt { background: hsl(var(--muted)); }
.zp-narrow { max-width: 760px; }
.zp-center { text-align: center; margin-left: auto; margin-right: auto; }

/* Typography -------------------------------------------------------------- */
.zp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Kode Mono', monospace; font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--zp-teal-dark);
  background: rgba(10,186,181,.10);
  border: 1px solid rgba(10,186,181,.22);
  padding: 7px 14px; border-radius: 999px;
}
.zp-h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.08; font-weight: 700; margin: 18px 0 0; letter-spacing: -0.01em; }
.zp-h2 { font-size: clamp(26px, 3.6vw, 38px); line-height: 1.15; font-weight: 700; margin: 14px 0 0; }
.zp-h3 { font-size: 19px; font-weight: 600; margin: 0 0 6px; }
.zp-lead { font-size: clamp(16px, 2vw, 20px); line-height: 1.6; color: var(--zp-muted); margin: 18px 0 0; }
.zp-text { font-size: 16px; line-height: 1.7; color: var(--zp-muted); }
.zp-grad-text { background: var(--zp-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Buttons ----------------------------------------------------------------- */
.zp-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.zp-center .zp-actions { justify-content: center; }
.zp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  padding: 14px 26px; border-radius: 12px; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  border: 2px solid transparent;
}
.zp-btn-primary { background: var(--zp-teal); color: #fff; }
.zp-btn-primary:hover { background: var(--zp-teal-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,186,181,.32); }
.zp-btn-ghost { border-color: hsl(var(--border)); color: var(--zp-ink); background: transparent; }
.zp-btn-ghost:hover { border-color: var(--zp-teal); color: var(--zp-teal); }
.zp-btn-wa { background: #25D366; color: #fff; }
.zp-btn-wa:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.zp-btn svg { flex-shrink: 0; }

/* Hero -------------------------------------------------------------------- */
.zp-hero { position: relative; padding: 150px 0 84px; overflow: hidden; }
.zp-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 420px at 78% -8%, rgba(0,255,225,.16), transparent 60%),
    radial-gradient(700px 380px at 8% 14%, rgba(10,186,181,.12), transparent 60%);
  pointer-events: none;
}
.zp-hero > .zp-container { position: relative; z-index: 1; }
.zp-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.zp-hero-media { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.12); }
.zp-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zp-microcopy { margin-top: 18px; font-size: 13px; color: var(--zp-muted); }

/* Cards / grids ----------------------------------------------------------- */
.zp-grid { display: grid; gap: 22px; }
.zp-grid-2 { grid-template-columns: repeat(2, 1fr); }
.zp-grid-3 { grid-template-columns: repeat(3, 1fr); }
.zp-grid-4 { grid-template-columns: repeat(4, 1fr); }
.zp-card {
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: 16px; padding: 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.zp-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); border-color: rgba(10,186,181,.4); }
.zp-card .zp-text { margin-top: 6px; font-size: 15px; }
.zp-ico {
  width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: var(--zp-grad); color: #042f2e; margin-bottom: 16px;
}
.zp-ico svg { width: 26px; height: 26px; }
.zp-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--zp-teal-dark); font-weight: 600; font-size: 14px; text-decoration: none; }
.zp-card-link:hover { gap: 10px; }

/* Checklist --------------------------------------------------------------- */
.zp-checks { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.zp-checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.zp-checks li::before {
  content: ''; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px;
  background: var(--zp-grad) no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/16px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* Steps ------------------------------------------------------------------- */
.zp-steps { display: grid; gap: 20px; counter-reset: zp-step; }
.zp-step { position: relative; padding-left: 64px; }
.zp-step::before {
  counter-increment: zp-step; content: counter(zp-step);
  position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--zp-grad); color: #042f2e; font-family: 'Kode Mono', monospace; font-weight: 700; font-size: 18px;
}

/* Timeline horizontal "Como funciona" ------------------------------------- */
.zp-flow { list-style: none; margin: 48px 0 0; padding: 0; position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.zp-flow-step { position: relative; display: flex; flex-direction: column; }
.zp-flow-num { counter-increment: zp-step; position: relative; z-index: 2;
  width: 44px; height: 44px; border-radius: 12px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: var(--zp-grad); color: #042f2e;
  font-family: 'Kode Mono', monospace; font-weight: 700; font-size: 18px; }
.zp-flow-num::before { content: counter(zp-step); }
.zp-flow-step::after { content: ''; position: absolute; top: 22px; left: 50%; width: 100%; height: 2px; z-index: 1;
  background: linear-gradient(90deg, rgba(10,186,181,.45), rgba(10,186,181,.25)); }
.zp-flow-step:last-child::after { display: none; }
.zp-flow-card { flex: 1; text-align: center; padding: 24px 18px;
  background: linear-gradient(135deg, rgba(10,186,181,.06), rgba(0,207,200,.02));
  border: 1px solid rgba(10,186,181,.14); border-radius: 16px;
  transition: transform .25s ease, box-shadow .25s ease; }
.zp-flow-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,186,181,.12); }
.zp-flow-ico { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,186,181,.14); color: var(--zp-teal-dark); }
.zp-flow-ico svg { width: 24px; height: 24px; fill: currentColor; }
.zp-flow-title { display: block; font-family: 'Kode Mono', monospace; font-size: 16px; color: var(--zp-ink); margin: 0 0 6px; }
.zp-flow-card .zp-text { font-size: 14px; line-height: 1.55; margin: 0; }
@media (max-width: 940px) { .zp-flow { grid-template-columns: repeat(2, 1fr); } .zp-flow-step::after { display: none; } }
@media (max-width: 600px) {
  /* timeline vertical compacta: número à esquerda + linha conectora + texto à direita */
  .zp-flow { grid-template-columns: 1fr; gap: 0; margin-top: 32px; }
  .zp-flow-step { display: grid; grid-template-columns: 44px 1fr; column-gap: 16px; align-items: start; padding-bottom: 24px; }
  .zp-flow-num { margin: 0; }
  .zp-flow-step:not(:last-child)::after { content: ''; display: block; position: absolute; left: 21px; top: 50px; bottom: 2px; width: 2px; height: auto;
    background: linear-gradient(180deg, rgba(10,186,181,.5), rgba(10,186,181,.15)); }
  .zp-flow-card { padding: 6px 0 0; background: none; border: none; text-align: left; }
  .zp-flow-card:hover { transform: none; box-shadow: none; }
  .zp-flow-ico { display: none; }
  .zp-flow-title { font-size: 16px; margin: 0 0 4px; }
  .zp-flow-card .zp-text { font-size: 13.5px; }
}

/* Combo cards ------------------------------------------------------------- */
.zp-combo { display: flex; flex-direction: column; }
.zp-combo .zp-combo-for { font-size: 13px; color: var(--zp-muted); margin: 2px 0 14px; }
.zp-combo .zp-price { font-family: 'Kode Mono', monospace; font-size: 26px; font-weight: 700; color: var(--zp-teal-dark); margin: 4px 0 0; }
.zp-combo .zp-price small { font-size: 13px; font-weight: 400; color: var(--zp-muted); }
.zp-combo .zp-actions { margin-top: auto; padding-top: 22px; }
.zp-combo-feats { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 9px; }
.zp-combo-feats li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.45; color: var(--zp-ink); }
.zp-combo-feats li::before { content: '✓'; color: var(--zp-teal-dark); font-weight: 700; }

/* Comparison table -------------------------------------------------------- */
.zp-table { width: 100%; border-collapse: collapse; margin-top: 24px; overflow: hidden; border-radius: 14px; border: 1px solid hsl(var(--border)); }
.zp-table th, .zp-table td { padding: 16px 18px; text-align: left; font-size: 15px; border-bottom: 1px solid hsl(var(--border)); }
.zp-table thead th { font-family: 'Kode Mono', monospace; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; background: hsl(var(--muted)); }
.zp-table thead th:last-child { color: var(--zp-teal-dark); }
.zp-table tbody tr:last-child td { border-bottom: none; }
.zp-table td:last-child { font-weight: 600; }

/* Modules grid (Zippy Connect, Guest, Secure...) -------------------------- */
.zp-module { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 16px; padding: 26px; }
.zp-module h3 { color: var(--zp-teal-dark); }

/* CTA band ---------------------------------------------------------------- */
.zp-cta-band { background: var(--zp-grad); border-radius: 24px; padding: 56px 40px; text-align: center; color: #042f2e; }
.zp-cta-band .zp-h2 { color: #042f2e; }
.zp-cta-band p { color: #063f3d; font-size: 17px; margin: 14px auto 0; max-width: 560px; line-height: 1.55; }
.zp-cta-band .zp-btn-primary { background: #042f2e; }
.zp-cta-band .zp-btn-primary:hover { background: #021a19; }

/* Problem cards (lighter) ------------------------------------------------- */
.zp-prob { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-left: 4px solid var(--zp-teal); border-radius: 12px; padding: 22px 24px; }
.zp-prob h3 { font-size: 17px; }

/* Trust strip ------------------------------------------------------------- */
.zp-trust { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: center; }
.zp-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--zp-muted); }
.zp-trust span::before { content: '●'; color: var(--zp-teal); font-size: 10px; }

/* Section heading helper -------------------------------------------------- */
.zp-head { max-width: 720px; margin-bottom: 44px; }
.zp-head.zp-center { margin-left: auto; margin-right: auto; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 940px) {
  .zp-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .zp-hero-media { order: -1; }
  .zp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .zp-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .zp-section { padding: 60px 0; }
  .zp-hero { padding: 120px 0 64px; }
  .zp-grid-2, .zp-grid-3, .zp-grid-4 { grid-template-columns: 1fr; }
  .zp-cta-band { padding: 40px 22px; }
  .zp-table { font-size: 13px; }
  .zp-table th, .zp-table td { padding: 12px 12px; }
}

/* ==========================================================================
   v2 — Componentes ricos (inspirados em condominios.html)
   ========================================================================== */

/* Keyframes ---------------------------------------------------------------- */
@keyframes zp-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1;
    box-shadow: 0 0 18px rgba(0,255,245,.95), 0 0 40px rgba(10,186,181,.7), inset 0 0 8px rgba(255,255,255,.5); }
  50% { transform: scale(1.7); opacity: .85;
    box-shadow: 0 0 30px rgba(0,255,245,1), 0 0 70px rgba(10,186,181,.9), inset 0 0 12px rgba(255,255,255,.8); }
}
@keyframes zp-fade-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes zp-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Hero rico (grid pattern + ripple) --------------------------------------- */
.zp-hero--rich { background: linear-gradient(180deg, #E8F5F5 0%, #F0FAFB 60%, hsl(var(--background)) 100%); }
.zp-hero--rich::before { display: none; }
.zp-hero-grid-pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,150,150,.06) 1px, transparent 1px),
    linear-gradient(to right, rgba(0,150,150,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 40%, transparent 100%);
}
.zp-hero--rich background-ripple { position: absolute; inset: 0; z-index: 0; opacity: .55; pointer-events: none; }
.zp-hero--rich > .zp-container { position: relative; z-index: 2; }

/* Título bicolor ---------------------------------------------------------- */
.zp-title-2c { font-family: 'Kode Mono', monospace; font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; margin: 18px 0 0; font-size: clamp(32px, 5vw, 52px); }
.zp-title-2c .l1 { display: block; color: #0F3839; }
.zp-title-2c .l2 { display: block; color: #0ABAB5; }

/* Botão pill gradiente ---------------------------------------------------- */
.zp-btn-pill { border-radius: 999px; background: linear-gradient(135deg, #0ABAB5 0%, #00CFC8 100%); color: #fff; border: none; box-shadow: 0 4px 16px rgba(10,186,181,.28); }
.zp-btn-pill:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 10px 28px rgba(10,186,181,.4); color: #fff; }
.zp-btn-pill-ghost { border-radius: 999px; background: rgba(255,255,255,.95); border: 2px solid #0ABAB5; color: #0ABAB5; }
.zp-btn-pill-ghost:hover { background: #0ABAB5; color: #fff; transform: translateY(-2px); }

/* Stat chips -------------------------------------------------------------- */
.zp-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.zp-stat { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 14px; padding: 12px 18px; box-shadow: 0 6px 18px rgba(0,0,0,.04); }
.zp-stat-num { font-family: 'Kode Mono', monospace; font-weight: 700; font-size: 22px; color: var(--zp-teal-dark); line-height: 1; }
.zp-stat-label { font-size: 12.5px; color: var(--zp-muted); margin-top: 4px; }

/* Hero media com profundidade --------------------------------------------- */
.zp-hero-media--depth { position: relative; }
.zp-hero-media--depth::after { content: ''; position: absolute; left: 6%; right: 6%; bottom: -4%; height: 40%; z-index: -1;
  background: radial-gradient(ellipse at center bottom, rgba(10,186,181,.18) 0%, transparent 70%); filter: blur(22px); }
.zp-hero-media--depth img { filter: drop-shadow(0 12px 30px rgba(0,0,0,.10)) drop-shadow(0 4px 12px rgba(10,186,181,.12)); }

/* Infocards (gradiente sutil + ícone círculo) ----------------------------- */
.zp-infocard { display: flex; gap: 16px; align-items: flex-start; padding: 22px;
  background: linear-gradient(135deg, rgba(10,186,181,.06) 0%, rgba(0,207,200,.02) 100%);
  border: 1px solid rgba(10,186,181,.14); border-radius: 16px; transition: transform .25s ease, box-shadow .25s ease; }
.zp-infocard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,186,181,.12); }
.zp-infocard-ico { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(10,186,181,.14); color: var(--zp-teal-dark); }
.zp-infocard-ico svg { width: 24px; height: 24px; }
.zp-infocard h3 { font-size: 17px; font-weight: 600; margin: 2px 0 6px; }
.zp-infocard p { font-size: 14.5px; line-height: 1.55; color: var(--zp-muted); margin: 0; }

/* Badge pill (blur) ------------------------------------------------------- */
.zp-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  font-family: 'Kode Mono', monospace; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.zp-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* Seção dark glassmorphism ------------------------------------------------ */
.zp-dark { position: relative; overflow: hidden; background: linear-gradient(180deg, #052228 0%, #0A2D34 100%); color: #fff; }
.zp-dark::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(rgba(0,255,225,.04) 1px, transparent 1px), linear-gradient(to right, rgba(0,255,225,.04) 1px, transparent 1px); background-size: 32px 32px; }
.zp-dark > .zp-container { position: relative; z-index: 2; }
.zp-dark .zp-h2, .zp-dark .zp-h3 { color: #fff; }
.zp-dark .zp-text, .zp-dark .zp-lead { color: rgba(255,255,255,.78); }
.zp-dark .zp-badge { color: #00FFE1; background: rgba(0,255,225,.10); border: 1px solid rgba(0,255,225,.4); backdrop-filter: blur(6px); }
.zp-dark .zp-eyebrow { color: #00FFE1; background: rgba(0,255,225,.10); border-color: rgba(0,255,225,.35); }
.zp-dark .zp-card-link { color: #00FFE1; }
.zp-glass { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 26px; }
.zp-dark input, .zp-dark select { width: 100%; padding: 13px 15px; border-radius: 12px; border: 2px solid rgba(0,255,225,.5);
  background: rgba(255,255,255,.10); color: #fff; font-family: 'Titillium Web', sans-serif; font-size: 16px; font-weight: 600; backdrop-filter: blur(8px); }
.zp-dark input:focus, .zp-dark select:focus { outline: none; border-color: #00FFE1; box-shadow: 0 0 0 3px rgba(0,255,225,.18); }
.zp-dark label { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.9); display: block; margin-bottom: 7px; }
.zp-dark select option { color: #042f2e; }
.zp-result-price { font-family: 'Kode Mono', monospace; font-weight: 700; font-size: clamp(28px, 4vw, 38px); color: #fff; }
.zp-result-box { background: linear-gradient(135deg, #0ABAB5 0%, #00CFC8 100%); border-radius: 14px; padding: 20px 22px; box-shadow: 0 0 24px rgba(0,255,245,.3); }

/* Tabs interativas -------------------------------------------------------- */
.zp-tabbar { display: flex; gap: 6px; flex-wrap: nowrap; overflow-x: auto; border-bottom: 1px solid hsl(var(--border)); margin-bottom: 36px; justify-content: center; }
.zp-tab { padding: 14px 22px; font-family: 'Titillium Web', sans-serif; font-size: 15px; font-weight: 500; color: var(--zp-muted);
  background: transparent; border: none; border-bottom: 3px solid transparent; cursor: pointer; white-space: nowrap; transition: all .25s ease; }
.zp-tab:hover { color: var(--zp-teal); }
.zp-tab.active { color: var(--zp-teal); border-bottom-color: var(--zp-teal); font-weight: 600; }
.zp-tab svg { width: 15px; height: 15px; fill: currentColor; vertical-align: -2px; margin-right: 7px; }
.zp-tabpanel { display: none; }
.zp-tabpanel.active { display: block; animation: zp-fade-in .5s ease; }
.zp-tabgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }

/* Dotmap (imagem + dots pulsantes) ---------------------------------------- */
.zp-dotmap { position: relative; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.12); }
.zp-dotmap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zp-dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(255,255,255,.8);
  background: radial-gradient(circle, #00FFF5 0%, #0ABAB5 50%, #008B87 100%); animation: zp-dot-pulse 1.8s ease-in-out infinite; }

/* Hotspots interativos (micro-janela ao clicar) -------------------------- */
.zp-hotspot { position: absolute; transform: translate(-50%, -50%); z-index: 3; }
.zp-hotspot .zp-dot { position: static; display: block; padding: 0; cursor: pointer; box-sizing: content-box; }
.zp-pop { position: absolute; bottom: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  width: min(240px, 70vw); background: #062b30; color: #fff; border: 1px solid rgba(0,255,245,.35);
  border-radius: 12px; padding: 12px 14px; box-shadow: 0 16px 40px rgba(0,0,0,.4);
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; text-align: left; }
.zp-pop::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 7px solid transparent; border-top-color: #062b30; }
.zp-pop strong { display: block; font-family: 'Kode Mono', monospace; font-size: 14px; color: #00FFF5; margin-bottom: 4px; }
.zp-pop p { margin: 0; font-size: 13.5px; line-height: 1.45; color: rgba(255,255,255,.85); }
.zp-hotspot.open { z-index: 6; }
.zp-hotspot.open .zp-pop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.zp-hotspot--below .zp-pop { top: calc(100% + 14px); bottom: auto; }
.zp-hotspot--below .zp-pop::after { top: auto; bottom: 100%; border-top-color: transparent; border-bottom-color: #062b30; }
/* dot perto da borda esquerda: balão expande para a direita */
.zp-hotspot--left .zp-pop { left: -8px; right: auto; transform: translateY(6px); }
.zp-hotspot--left.open .zp-pop { transform: translateY(0); }
.zp-hotspot--left .zp-pop::after { left: 24px; transform: none; }
/* dot perto da borda direita: balão expande para a esquerda */
.zp-hotspot--right .zp-pop { left: auto; right: -8px; transform: translateY(6px); }
.zp-hotspot--right.open .zp-pop { transform: translateY(0); }
.zp-hotspot--right .zp-pop::after { left: auto; right: 24px; transform: none; }

/* Indicadores mobile ------------------------------------------------------ */
.zp-indicators { display: none; gap: 8px; justify-content: center; margin-top: 22px; }
.zp-indicator { width: 8px; height: 8px; border-radius: 50%; background: rgba(120,150,150,.4); cursor: pointer; transition: all .3s ease; }
.zp-indicator.active { width: 26px; border-radius: 4px; background: linear-gradient(135deg, #0ABAB5, #00CFC8); }
.zp-tab-arrows { display: none; }

/* background-gradient wrapper helper --------------------------------------- */
.zp-combo-grad { height: 100%; }
.zp-combo-grad .zp-card { height: 100%; margin: 0; }
/* Cards de combo em seção dark: glass escuro p/ combinar com a seção */
.zp-dark .zp-combo-grad .zp-card.zp-combo {
  background: rgba(255,255,255,.055); border: 1px solid rgba(0,255,225,.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.zp-dark .zp-combo-grad .zp-card.zp-combo:hover {
  border-color: rgba(0,255,225,.45); box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.zp-dark .zp-combo .zp-h3 { color: #fff; }
.zp-dark .zp-combo .zp-price { color: #00FFE1; }
.zp-dark .zp-combo .zp-price small { color: rgba(255,255,255,.85); }
.zp-dark .zp-combo .zp-combo-for { color: rgba(255,255,255,.78); }

/* Página Valores — grids de faixas de preço, chips "inclui" e tabelas responsivas */
.zp-pricegrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; }
.zp-pricecard { display: flex; flex-direction: column; text-align: center; align-items: center; }
.zp-pricecard .zp-h3 { font-family: 'Kode Mono', monospace; font-size: 18px; }
.zp-pricecard .zp-pricecard-cap { font-size: 13px; color: var(--zp-muted); margin: 2px 0 4px; }
.zp-pricecard-spec { font-family: 'Kode Mono', monospace; font-size: 12px; letter-spacing: .02em; color: var(--zp-teal-dark); margin: 0 0 10px; }
.zp-pricecard .zp-price { font-family: 'Kode Mono', monospace; font-size: 24px; font-weight: 700; color: var(--zp-teal-dark); margin: 0; }
.zp-pricecard .zp-price small { font-size: 13px; font-weight: 400; color: var(--zp-muted); }
.zp-incluibar { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; align-items: center; }
.zp-incluibar .zp-inclui-label { font-family: 'Kode Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--zp-muted); margin-right: 4px; }
.zp-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--zp-teal-dark);
  background: rgba(10,186,181,.10); border: 1px solid rgba(10,186,181,.25); padding: 7px 13px; border-radius: 999px; }
.zp-chip::before { content: '✓'; font-weight: 700; }
.zp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Comparativo escuro com globo de fundo */
.zp-section--cmp { position: relative; overflow: hidden; }
/* globo só no topo-direito, atrás do título — nunca atrás da tabela */
.zp-section--cmp .zp-globe { left: auto; right: -10%; top: -28%; transform: none; width: clamp(420px, 46vw, 680px); height: clamp(420px, 46vw, 680px); opacity: .10; }
@media (max-width: 860px) { .zp-section--cmp .zp-globe { right: -38%; top: -10%; opacity: .06; } }
/* painel sólido atrás da tabela p/ legibilidade total sobre o fundo escuro */
.zp-section--cmp .zp-table-wrap { position: relative; z-index: 1; background: #06262c; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.zp-dark .zp-table { border-color: rgba(255,255,255,.14); }
.zp-dark .zp-table th, .zp-dark .zp-table td { border-bottom-color: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.zp-dark .zp-table thead th { background: rgba(255,255,255,.06); color: #fff; }
.zp-dark .zp-table thead th:last-child { color: #00FFE1; }
.zp-dark .zp-table td:first-child { color: rgba(255,255,255,.72); }
.zp-table-group td { background: rgba(0,255,225,.08); font-family: 'Kode Mono', monospace; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #00FFE1; font-weight: 600; }

.zp-subhead { font-family: 'Kode Mono', monospace; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--zp-teal-dark); margin: 30px 0 0; }

/* Catálogo individual — acordeão compacto */
.zp-acc-list { display: grid; gap: 12px; max-width: 940px; margin: 8px auto 0; }
.zp-acc { border: 1px solid hsl(var(--border)); border-radius: 14px; background: hsl(var(--card)); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.zp-acc[open] { border-color: rgba(10,186,181,.45); box-shadow: 0 12px 32px rgba(10,186,181,.10); }
.zp-acc > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 18px 20px; }
.zp-acc > summary::-webkit-details-marker { display: none; }
.zp-acc > summary:hover { background: rgba(10,186,181,.04); }
.zp-acc-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--zp-grad); color: #042f2e; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.zp-acc-ico svg { width: 21px; height: 21px; }
.zp-acc-titles { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.zp-acc-titles strong { font-size: 16px; font-weight: 600; color: var(--zp-ink); }
.zp-acc-titles span { font-size: 13.5px; color: var(--zp-muted); }
.zp-acc-chev { width: 22px; height: 22px; flex: 0 0 auto; color: var(--zp-teal-dark); transition: transform .25s ease; }
.zp-acc[open] .zp-acc-chev { transform: rotate(180deg); }
.zp-acc-body { padding: 0 20px 22px; }
.zp-acc-body .zp-table { margin-top: 0; }
.zp-acc-body .zp-subhead { margin-top: 24px; }
@media (max-width: 560px) { .zp-acc > summary { padding: 15px 15px; gap: 11px; } .zp-acc-body { padding: 0 15px 18px; } .zp-acc-titles strong { font-size: 15px; } }

/* Seção de planos — fundo com peso (vetor + grid de pontos) */
.zp-section--planos { position: relative; overflow: hidden; background: linear-gradient(180deg, #eef9f8 0%, #ffffff 70%); }
.zp-section--planos > .zp-container { position: relative; z-index: 2; }
.zp-planbg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.zp-planbg-grid { position: absolute; inset: 0;
  background-image: radial-gradient(rgba(10,186,181,.16) 1.4px, transparent 1.4px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 22%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 22%, #000 0%, transparent 72%); }
.zp-planbg-glow { position: absolute; top: -12%; left: 50%; transform: translateX(-50%);
  width: clamp(620px, 78vw, 1100px); height: clamp(620px, 78vw, 1100px);
  background: radial-gradient(circle, rgba(0,255,225,.18) 0%, rgba(10,186,181,.08) 38%, transparent 68%); }
.zp-planbg-vec { position: absolute; color: #0ABAB5; opacity: .16; }
.zp-planbg-vec svg { width: 100%; height: auto; display: block; }
.zp-planbg-vec--tl { top: 4%; left: -4%; width: clamp(320px, 30vw, 460px); }
.zp-planbg-vec--br { bottom: -4%; right: -4%; width: clamp(360px, 34vw, 520px); opacity: .13; }
@media (max-width: 860px) { .zp-planbg-vec--tl, .zp-planbg-vec--br { opacity: .1; width: 280px; } }
/* mesmo tratamento de fundo no catálogo (acordeão) */
.zp-section--catbg { position: relative; overflow: hidden; background: linear-gradient(180deg, #eef9f8 0%, #ffffff 60%); }
.zp-section--catbg > .zp-container { position: relative; z-index: 2; }

/* Selo de parceiro (logo) no hero */
.zp-hero-partner { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.zp-hero-partner span { font-family: 'Kode Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.zp-hero-partner img { height: 26px; width: auto; opacity: .75; }

/* Selo de qualidade premium (abaixo dos planos) */
.zp-quality { display: flex; gap: 18px; align-items: flex-start; max-width: 920px; margin: 44px auto 0; padding: 22px 24px;
  border: 1px solid rgba(10,186,181,.3); border-left: 4px solid var(--zp-teal); border-radius: 14px;
  background: linear-gradient(180deg, rgba(10,186,181,.07), rgba(10,186,181,.02)); }
.zp-quality-ico { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 11px; background: var(--zp-grad); color: #042f2e; display: flex; align-items: center; justify-content: center; }
.zp-quality-ico svg { width: 23px; height: 23px; fill: currentColor; }
.zp-quality-body strong { display: block; font-family: 'Kode Mono', monospace; font-size: 15px; color: var(--zp-ink); margin-bottom: 7px; }
.zp-quality-body p { font-size: 14px; line-height: 1.6; color: var(--zp-muted); margin: 0; }
.zp-quality-logo { display: flex; align-items: center; gap: 9px; margin-top: 14px; }
.zp-quality-logo span { font-family: 'Kode Mono', monospace; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--zp-muted); }
.zp-quality-logo img { height: 22px; width: auto; }
@media (max-width: 560px) { .zp-quality { flex-direction: column; gap: 14px; } }
/* Variante em seção escura (home) */
.zp-dark .zp-quality { background: rgba(255,255,255,.05); border-color: rgba(0,255,225,.3); border-left-color: var(--zp-teal); }
.zp-dark .zp-quality-body strong { color: #fff; }
.zp-dark .zp-quality-body p { color: rgba(255,255,255,.8); }
.zp-dark .zp-quality-logo span { color: rgba(255,255,255,.7); }

/* Cards de plano — ícone + features agrupadas por categoria */
.zp-plan-ico { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: var(--zp-grad); color: #042f2e; margin-bottom: 14px; }
.zp-plan-ico svg { width: 24px; height: 24px; }
.zp-combo { position: relative; }
.zp-ribbon { position: absolute; top: 18px; right: -38px; transform: rotate(45deg);
  font-family: 'Kode Mono', monospace; font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; background: var(--zp-teal); padding: 6px 44px; box-shadow: 0 4px 12px rgba(0,0,0,.2); z-index: 3; pointer-events: none; }
.zp-planfeats { margin: 18px 0 0; display: grid; gap: 15px; }
.zp-planfeat-cat { font-family: 'Kode Mono', monospace; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--zp-teal-dark); margin: 0 0 7px; padding-bottom: 5px; border-bottom: 1px solid hsl(var(--border)); }
.zp-cat-ico { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px; margin-right: 7px; vertical-align: -3px; color: var(--zp-teal-dark); }
.zp-cat-ico svg { width: 16px; height: 16px; fill: currentColor; }
.zp-table-group .zp-cat-ico { color: inherit; }
.zp-plan-support { font-size: 13px; color: var(--zp-teal-dark); margin: 16px 0 0; display: flex; align-items: flex-start; gap: 7px; }
.zp-plan-support::before { content: '✓'; font-weight: 700; }
.zp-planfeat-group ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 5px; }
.zp-planfeat-group li { position: relative; padding-left: 14px; font-size: 14px; line-height: 1.4; color: var(--zp-ink); }
.zp-planfeat-group li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: rgba(10,186,181,.5); }
.zp-plan-avulso { font-size: 13px; color: var(--zp-muted); margin: 18px 0 0; padding-top: 14px; border-top: 1px dashed hsl(var(--border)); }

@media (max-width: 940px) {
  .zp-tabgrid { grid-template-columns: 1fr; gap: 28px; }
  .zp-tabgrid .zp-dotmap { order: -1; }
}
@media (max-width: 768px) {
  /* módulos como chips roláveis no topo — deixa claro que há mais para o lado */
  .zp-tabbar { display: flex; justify-content: flex-start; gap: 8px; margin-bottom: 24px; padding: 0 0 4px; border-bottom: none;
    scroll-snap-type: x proximity; scroll-padding: 0 16px;
    -webkit-mask-image: linear-gradient(90deg, #000 82%, transparent 100%); mask-image: linear-gradient(90deg, #000 82%, transparent 100%); }
  .zp-tabbar .zp-tab { flex: 0 0 auto; scroll-snap-align: center; border: 1px solid hsl(var(--border)); border-radius: 999px; padding: 9px 15px; font-size: 13.5px; }
  .zp-tabbar .zp-tab.active { color: #042f2e; background: var(--zp-grad); border-color: transparent; font-weight: 600; }
  .zp-tabbar .zp-tab.active svg { fill: #042f2e; }
  .zp-indicators { display: none; }
  .zp-tab-arrows { display: none; }
  /* setas sobre a imagem para navegar os módulos */
  .zp-dotmap .zp-img-nav { display: flex; align-items: center; justify-content: center;
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
    width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
    background: rgba(4,24,26,.55); color: #fff; font-size: 26px; line-height: 1;
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); -webkit-tap-highlight-color: transparent; }
  .zp-dotmap .zp-img-nav--prev { left: 10px; }
  .zp-dotmap .zp-img-nav--next { right: 10px; }
  .zp-dotmap .zp-img-nav:active { background: rgba(10,186,181,.85); }
}
.zp-img-nav { display: none; }

/* ==========================================================================
   Hero cover (estilo Starlink Business) — imagem full-bleed + texto sobreposto
   ========================================================================== */
.zp-hero--cover {
  position: relative;
  min-height: clamp(580px, 86vh, 820px);
  display: grid;
  align-content: center;
  padding: 120px 0 44px;
  overflow: visible;
  background: #052228;
}
.zp-hero--cover > .zp-container { width: 100%; }
.zp-hero--cover .zp-title-2c { font-size: clamp(28px, 3.4vw, 42px); }
.zp-hero--cover::before { display: none; }
.zp-hero-cover-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0,0,0,.55) 86%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0,0,0,.55) 86%, transparent 100%);
}
.zp-hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  background:
    linear-gradient(90deg, rgba(3,18,20,.86) 0%, rgba(3,18,20,.55) 42%, rgba(3,18,20,.12) 72%, transparent 100%),
    linear-gradient(180deg, rgba(3,18,20,.28) 0%, transparent 34%);
}
.zp-hero--cover > .zp-container { position: relative; z-index: 2; }
.zp-hero-cover-content { max-width: 640px; }
.zp-hero--cover .zp-eyebrow {
  color: #00FFE1; background: rgba(0,255,225,.12);
  border-color: rgba(0,255,225,.4); backdrop-filter: blur(6px);
}
.zp-title-2c--light .l1 { color: #fff; }
.zp-title-2c--light .l2 { color: #00FFE1; }
.zp-hero--cover .zp-lead { color: rgba(255,255,255,.92); }
.zp-hero--cover .zp-microcopy { color: rgba(255,255,255,.72); }
.zp-hero--cover .zp-btn-pill-ghost {
  background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.85); color: #fff;
  backdrop-filter: blur(6px);
}
.zp-hero--cover .zp-btn-pill-ghost:hover { background: #fff; color: #04181a; border-color: #fff; }

/* Layout do hero cover (texto alinhado à esquerda) */
.zp-hero-cover-layout { width: 100%; }
.zp-hero-cover-content { max-width: 620px; }
/* Hero full-viewport (página Planos): imagem ocupa a tela toda, sem fade na base */
.zp-hero--cover.zp-hero--full { min-height: 100vh; min-height: 100svh; padding: 120px 0 60px; }
.zp-hero--cover.zp-hero--full .zp-hero-cover-img { -webkit-mask-image: none; mask-image: none; }
.zp-hero--cover.zp-hero--full .zp-hero-scrim { -webkit-mask-image: none; mask-image: none;
  background: linear-gradient(90deg, rgba(3,18,20,.84) 0%, rgba(3,18,20,.5) 44%, rgba(3,18,20,.1) 74%, transparent 100%),
    linear-gradient(180deg, rgba(3,18,20,.3) 0%, transparent 30%, transparent 70%, rgba(3,18,20,.4) 100%); }

/* Wrapper dos cards na emenda hero -> seção (sobrepõe a transição) */
.zp-hero-cards-wrap { position: relative; z-index: 5; margin-top: calc(-1 * clamp(70px, 10vh, 120px));
  background: linear-gradient(180deg, transparent 0, transparent 30px, #052228 58px, #052228 100%);
  padding-bottom: 4px; }
/* Cards liquid glass lado a lado, centralizados */
.zp-hero-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; width: 100%; max-width: 820px; margin: 0 auto; }
.zp-gcard {
  position: relative; display: block; text-decoration: none; color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 100%), rgba(7,28,30,.62);
  border: 1px solid rgba(255,255,255,.26); border-radius: 20px; padding: 22px 24px;
  -webkit-backdrop-filter: blur(18px) saturate(140%); backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 18px 44px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.40);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
}
.zp-gcard::before { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 80% at 0% 0%, rgba(255,255,255,.25), transparent 52%); }
.zp-gcard:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.5); }
.zp-gcard-ico { width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0ABAB5, #00CFC8); color: #04181a; margin-bottom: 14px; }
.zp-gcard-ico svg { width: 24px; height: 24px; }
.zp-gcard .zp-gcard-tag { font-family: 'Kode Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: #00FFE1; }
.zp-gcard h3 { font-family: 'Kode Mono', monospace; font-size: 19px; margin: 4px 0 8px; color: #fff; }
.zp-gcard p { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,.86); margin: 0; }
.zp-gcard .zp-gcard-more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 600; font-size: 13px; color: #00FFE1; }
.zp-gcard:hover .zp-gcard-more { gap: 10px; }

/* Seção Casos de uso (cards com imagem — estilo Starlink) */
.zp-usegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.zp-usecard {
  display: flex; flex-direction: column; overflow: hidden; border-radius: 14px;
  text-decoration: none; color: #fff; background: #0a2b31;
  transition: transform .2s ease, box-shadow .2s ease;
}
.zp-usecard:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.zp-usecard-media { aspect-ratio: 16/11; overflow: hidden; }
.zp-usecard-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.zp-usecard:hover .zp-usecard-media img { transform: scale(1.05); }
.zp-usecard-body { padding: 16px 18px; }
.zp-usecard h3 { font-family: 'Kode Mono', monospace; font-size: 17px; margin: 0 0 4px; color: #fff; }
.zp-usecard p { font-size: 13px; line-height: 1.45; color: rgba(255,255,255,.62); margin: 0; }
.zp-section--usecases { padding-top: 84px; }
/* fundo escuro chapado (sem gradiente/grid) p/ emenda contínua com o wrapper e o hero */
.zp-section--usecases.zp-dark { background: #052228; }
.zp-section--usecases.zp-dark::before { display: none; }
@media (max-width: 940px) { .zp-usegrid { grid-template-columns: repeat(2, 1fr); } }

/* Equipment cards (Access Points Wi-Fi) — foto + ficha técnica */
.zp-eqcard { display: flex; flex-direction: column; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 16px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,.04); transition: transform .25s ease, box-shadow .25s ease; }
.zp-eqcard:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(10,186,181,.12); }
.zp-eqcard-media { aspect-ratio: 16/10; overflow: hidden; background: hsl(var(--muted)); }
.zp-eqcard-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.zp-eqcard:hover .zp-eqcard-media img { transform: scale(1.04); }
.zp-eqcard-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.zp-eqcard-eyebrow { font-family: 'Kode Mono', monospace; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--zp-teal-dark); margin-bottom: 7px; }
.zp-eqcard h3 { font-family: 'Kode Mono', monospace; font-size: 19px; color: var(--zp-ink); margin: 0 0 8px; }
.zp-eqcard-desc { font-size: 14px; line-height: 1.55; color: var(--zp-muted); margin: 0 0 14px; }
.zp-eqspecs { list-style: none; margin: auto 0 0; padding: 0; border-top: 1px solid hsl(var(--border)); }
.zp-eqspecs li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid hsl(var(--border)); font-size: 13px; }
.zp-eqspecs li:last-child { border-bottom: none; }
.zp-eqspec-k { color: var(--zp-muted); }
.zp-eqspec-v { color: var(--zp-ink); font-weight: 600; text-align: right; }
@media (max-width: 860px) { .zp-eqcard-media { aspect-ratio: 16/9; } }

/* Utilitário: dark chapado (#052228, sem grid) — para seções dark contíguas */
.zp-dark.zp-flat { background: #052228; }
.zp-dark.zp-flat::before { display: none; }
.zp-dark .zp-checks li { color: rgba(255,255,255,.92); }

/* Seção de features alternadas (imagem + texto) — estilo Starlink fixed-site */
.zp-features { display: flex; flex-direction: column; gap: clamp(48px, 8vh, 96px); margin-top: 8px; }
.zp-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.zp-feature:nth-child(even) .zp-feature-media { order: 2; }
.zp-feature-media { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3; background: #04181a; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.zp-feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zp-feature-media::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, rgba(5,34,40,.55) 0%, rgba(5,34,40,.12) 55%, transparent 100%),
              linear-gradient(0deg, rgba(0,255,225,.10), transparent 50%); }
.zp-feature-content .zp-eyebrow { margin-bottom: 14px; }
.zp-feature-content h3 { font-family: 'Kode Mono', monospace; font-size: clamp(24px, 2.6vw, 32px); color: #fff; margin: 0 0 12px; line-height: 1.12; }
.zp-feature-content .zp-lead { color: rgba(255,255,255,.86); margin: 0 0 6px; }
.zp-feature-content .zp-card-link { color: #00FFE1; margin-top: 18px; }
@media (max-width: 860px) {
  .zp-feature { grid-template-columns: 1fr; gap: 24px; }
  .zp-feature:nth-child(even) .zp-feature-media { order: -1; }
}

/* Showcase full-bleed (imagem cobre a seção: cabeçalho no topo + conteúdo no canto) — estilo Starlink "operação" */
.zp-section--showcase { padding-top: 0; padding-bottom: 0; }
.zp-showcase { position: relative; width: 100%; min-height: 100vh; min-height: 100svh; display: flex; overflow: hidden; margin: 0; }
.zp-showcase-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.zp-showcase-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,18,20,.85) 0%, rgba(3,18,20,.5) 40%, rgba(3,18,20,.12) 70%, transparent 100%),
    linear-gradient(180deg, #052228 0%, transparent 28%); }
.zp-showcase-text h2, .zp-showcase-text .zp-lead {
  text-shadow: 0 1px 3px rgba(0,0,0,.8), 0 2px 20px rgba(0,0,0,.65); }
.zp-showcase > .zp-container { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 8vh, 92px) 0; }
.zp-showcase-text { max-width: 620px; }
.zp-showcase-text .zp-lead { color: rgba(255,255,255,.9); margin-top: 18px; }
/* respiro entre o showcase e as features seguintes */
.zp-features-wrap { padding-top: clamp(56px, 9vh, 110px); }

/* Seção clara em 2 colunas (texto + imagem) — referência Starlink "autoinstalação" */
.zp-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.zp-split-content .zp-eyebrow { margin-bottom: 14px; }
.zp-split-content h2 { margin: 0 0 12px; }
.zp-split-content .zp-lead { margin: 0; }
.zp-split-content .zp-card-link { margin-top: 22px; }
.zp-split-media { border-radius: 20px; overflow: hidden; aspect-ratio: 5 / 4; background: hsl(var(--muted)); box-shadow: 0 24px 60px rgba(0,0,0,.12); }
.zp-split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zp-barlist { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.zp-barlist li { border-left: 3px solid var(--zp-teal); padding-left: 14px; font-weight: 600; font-size: 15.5px; color: var(--zp-ink); line-height: 1.4; }

/* Seção split full-bleed (imagem esq. + texto/vetor dir.) — referência Starlink "operações remotas" */
.zp-opsection { position: relative; overflow: hidden; background: #052228; }
.zp-opsplit { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(520px, 72vh, 760px); }
.zp-opsplit-media { position: relative; overflow: hidden; }
.zp-opsplit-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zp-opsplit-content { position: relative; display: flex; align-items: center; background: #052228; padding: clamp(48px,7vh,96px) clamp(28px,5vw,80px); overflow: hidden; }
.zp-opsplit-content .zp-globe { left: 50%; top: 50%; transform: translate(-50%,-50%); width: clamp(420px,42vw,640px); height: clamp(420px,42vw,640px); opacity: .24; }
.zp-opsplit-text { position: relative; z-index: 1; max-width: 520px; }
.zp-opsplit-text .zp-eyebrow { margin-bottom: 14px; }
.zp-opsplit-text h2 { margin: 0 0 14px; }
.zp-opsplit-text .zp-lead { color: rgba(255,255,255,.82); margin: 0; }
.zp-opsplit-text .zp-card-link { margin-top: 22px; }
@media (max-width: 860px) {
  .zp-opsplit { grid-template-columns: 1fr; min-height: 0; }
  /* imagem menor e emendando suavemente no bloco escuro (sem corte duro) */
  .zp-opsplit-media { min-height: 0; aspect-ratio: 16 / 11; margin-bottom: -1px; }
  .zp-opsplit-media::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
    background: linear-gradient(180deg, rgba(5,34,40,0) 0%, #052228 100%); pointer-events: none; }
  .zp-opsplit-content { padding: 36px 24px 56px; }
  /* esconder o vetor globo no mobile na seção Monitoramento (atrapalha a leitura) */
  .zp-opsection--mngmt .zp-globe { display: none; }
}

/* Carrossel contínuo (marquee) de cards de serviço — estilo Starlink "casos de uso" */
.zp-marquee { overflow: hidden; margin-top: 36px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.zp-marquee-track { display: flex; width: max-content; animation: zp-marquee 45s linear infinite; }
.zp-marquee:hover .zp-marquee-track { animation-play-state: paused; }
@keyframes zp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.zp-mcard { flex: 0 0 auto; width: 340px; margin-right: 24px; text-decoration: none; }
.zp-mcard-media { aspect-ratio: 16 / 10; border-radius: 16px; overflow: hidden; background: #04181a; box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.zp-mcard-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zp-mcard h3 { font-family: 'Kode Mono', monospace; font-size: 18px; color: #fff; margin: 16px 0 6px; line-height: 1.2; }
.zp-mcard p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.8); margin: 0; }
@media (max-width: 600px) { .zp-mcard { width: 78vw; max-width: 320px; } }
@media (prefers-reduced-motion: reduce) {
  .zp-marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .zp-marquee-track { animation: none; }
}

/* Vetor de globo wireframe ao fundo da seção (referência Starlink) */
.zp-has-globe { position: relative; overflow: hidden; }
.zp-has-globe > .zp-container { position: relative; z-index: 1; }
.zp-globe { position: absolute; z-index: 0; pointer-events: none; color: #0ABAB5; opacity: .18;
  left: -16%; top: 50%; transform: translateY(-50%); width: clamp(640px, 62vw, 1000px); height: clamp(640px, 62vw, 1000px); }
.zp-globe svg { width: 100%; height: 100%; display: block; }
@media (max-width: 860px) { .zp-globe { left: -45%; top: 16%; transform: none; opacity: .09; width: 720px; height: 720px; } }
/* variante: globo no canto superior-direito (seção clara de módulos) */
.zp-globe--tr { left: auto; right: -14%; top: -12%; transform: none; opacity: .16;
  width: clamp(560px, 56vw, 920px); height: clamp(560px, 56vw, 920px); }
@media (max-width: 860px) { .zp-globe--tr { right: -50%; top: -6%; opacity: .07; width: 760px; height: 760px; } }

/* Vetor de malha de nós conectados (mesh) ao fundo — base/direita */
.zp-mesh { position: absolute; z-index: 0; pointer-events: none; color: #0ABAB5; opacity: .22;
  right: -2%; bottom: -6%; width: clamp(420px, 46vw, 720px); }
.zp-mesh svg { width: 100%; height: auto; display: block; }
@media (max-width: 860px) { .zp-mesh { opacity: .14; width: 520px; right: -10%; bottom: -2%; } }

/* 3 blocos de ícone com divisores verticais (referência Starlink) */
.zp-iconrow { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(56px, 8vh, 96px); }
.zp-iconcol { text-align: center; padding: 0 clamp(16px, 3vw, 40px); }
.zp-iconcol:not(:first-child) { border-left: 1px solid hsl(var(--border)); }
.zp-iconcol-ico { width: 64px; height: 64px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; border-radius: 16px; background: rgba(10,186,181,.10); color: var(--zp-teal-dark); }
.zp-iconcol-ico svg { width: 32px; height: 32px; }
.zp-iconcol h3 { font-family: 'Kode Mono', monospace; font-size: 19px; line-height: 1.15; margin: 0 0 10px; color: var(--zp-ink); }
.zp-iconcol p { font-size: 14.5px; line-height: 1.55; color: var(--zp-muted); margin: 0 auto; max-width: 300px; }

@media (max-width: 860px) {
  .zp-split { grid-template-columns: 1fr; gap: 28px; align-items: stretch; }
  .zp-split-media { order: -1; aspect-ratio: 16 / 10; }
  .zp-iconrow { grid-template-columns: 1fr; margin-top: clamp(36px, 6vh, 56px); gap: 0; }
  /* Mobile: ícone à esquerda (2 linhas) + título e descrição empilhados à direita (compacto) */
  .zp-iconcol { display: grid; grid-template-columns: 46px 1fr; column-gap: 16px; row-gap: 4px; align-items: start; text-align: left; padding: 18px 0; }
  .zp-iconcol:not(:first-child) { border-left: none; border-top: 1px solid hsl(var(--border)); }
  .zp-iconcol-ico { grid-column: 1; grid-row: 1 / span 2; width: 46px; height: 46px; margin: 2px 0 0; border-radius: 12px; }
  .zp-iconcol-ico svg { width: 24px; height: 24px; }
  .zp-iconcol h3 { grid-column: 2; grid-row: 1; font-size: 17px; margin: 0; align-self: center; }
  .zp-iconcol p { grid-column: 2; grid-row: 2; font-size: 14px; max-width: none; margin: 0; }
}
@media (max-width: 768px) {
  /* Mobile: estilo opsplit — imagem no topo (com fade no escuro) + texto embaixo no fundo escuro */
  .zp-showcase { flex-direction: column; min-height: 0; background: #052228; }
  .zp-showcase > picture { position: relative; display: block; width: 100%; }
  .zp-showcase > picture::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 48%;
    background: linear-gradient(180deg, rgba(5,34,40,0) 0%, #052228 88%, #052228 100%); pointer-events: none; }
  .zp-showcase-img { position: relative; inset: auto; display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-position: center; }
  .zp-showcase-scrim { display: none; }
  .zp-showcase > .zp-container { justify-content: flex-start; padding: 36px 22px 56px; }
  .zp-showcase-text { max-width: 100%; }
}
@media (max-width: 600px) { .zp-usegrid { grid-template-columns: 1fr; } }

/* Mobile: features dos planos em 2 colunas dentro do card (preenche a largura) */
@media (max-width: 600px) {
  .zp-section--planos .zp-planfeats { grid-template-columns: 1fr 1fr; gap: 14px 18px; }
  .zp-section--planos .zp-planfeat-group { min-width: 0; }
  .zp-section--planos .zp-planfeat-group li { font-size: 13px; }
}

/* Mobile: catálogo — cards de faixa (Wi-Fi/Câmeras) em 2 colunas + tabela larga (Firewall) cabe sem rolar */
@media (max-width: 600px) {
  .zp-pricegrid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .zp-pricegrid .zp-card.zp-pricecard { padding: 16px 10px; }
  .zp-pricecard .zp-h3 { font-size: 15px; }
  .zp-pricecard .zp-pricecard-cap { font-size: 12px; }
  .zp-pricecard-spec { font-size: 11px; }
  .zp-pricecard .zp-price { font-size: 20px; }
  .zp-table--fit { table-layout: fixed; width: 100%; }
  .zp-table--fit th, .zp-table--fit td { padding: 8px 4px; font-size: 10px; line-height: 1.25; word-break: break-word; overflow-wrap: anywhere; hyphens: auto; }
  .zp-table--fit th:first-child, .zp-table--fit td:first-child { width: 28%; }
  .zp-table--fit thead th { font-size: 10px; letter-spacing: 0; padding: 9px 4px; }
}

/* Mobile: comparativo cabe 100% sem rolar (table fixa + texto compacto) */
@media (max-width: 600px) {
  .zp-section--cmp .zp-table-wrap { overflow-x: hidden; }
  .zp-section--cmp .zp-table { table-layout: fixed; width: 100%; }
  .zp-section--cmp .zp-table th,
  .zp-section--cmp .zp-table td { padding: 8px 4px; font-size: 10px; line-height: 1.25; word-break: break-word; overflow-wrap: anywhere; hyphens: auto; }
  .zp-section--cmp .zp-table th:first-child,
  .zp-section--cmp .zp-table td:first-child { width: 27%; }
  .zp-section--cmp .zp-table thead th { font-size: 10px; letter-spacing: 0; padding: 9px 4px; }
  .zp-section--cmp .zp-table-group td { font-size: 9.5px; letter-spacing: .03em; }
  .zp-section--cmp .zp-table-group .zp-cat-ico { width: 12px; height: 12px; margin-right: 4px; }
  .zp-section--cmp .zp-table-group .zp-cat-ico svg { width: 12px; height: 12px; }
}

/* Mobile: prévia dos planos em 2x2 (mais compacto, menos espaço em branco) */
@media (max-width: 600px) {
  #configurador .zp-grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  #configurador .zp-combo-grad .zp-card.zp-combo { padding: 18px 14px; }
  #configurador .zp-plan-ico { width: 40px; height: 40px; margin-bottom: 8px; }
  #configurador .zp-plan-ico svg { width: 20px; height: 20px; }
  #configurador .zp-combo .zp-h3 { font-size: 17px; }
  #configurador .zp-combo .zp-price { font-size: 21px; margin-top: 2px; }
  #configurador .zp-combo .zp-combo-for { font-size: 12px; line-height: 1.4; margin-bottom: 10px; }
  #configurador .zp-combo .zp-actions { padding-top: 14px; }
  #configurador .zp-combo .zp-btn { width: 100%; text-align: center; padding: 10px 8px; font-size: 13px; }
}

/* Faixa de stats abaixo do hero */
.zp-statband { border-bottom: 1px solid hsl(var(--border)); }
.zp-statband-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.zp-statband-item { text-align: center; padding: 26px 16px; border-left: 1px solid hsl(var(--border)); }
.zp-statband-item:first-child { border-left: none; }
.zp-statband-num { font-family: 'Kode Mono', monospace; font-weight: 700; font-size: 30px; color: var(--zp-teal-dark); line-height: 1; }
.zp-statband-label { font-size: 13px; color: var(--zp-muted); margin-top: 8px; }
@media (max-width: 560px) {
  .zp-statband-grid { grid-template-columns: repeat(2, 1fr); }
  .zp-statband-item { padding: 20px 12px; border-top: 1px solid hsl(var(--border)); }
  .zp-statband-item:nth-child(odd) { border-left: none; }
  .zp-statband-item:nth-child(-n+2) { border-top: none; }
  .zp-statband-num { font-size: 26px; }
}

@media (max-width: 768px) {
  .zp-hero--cover { min-height: 78vh; padding: 96px 0 48px; align-items: flex-end; }
  .zp-hero-scrim {
    background:
      linear-gradient(180deg, rgba(3,18,20,.30) 0%, rgba(3,18,20,.20) 40%, rgba(3,18,20,.88) 100%),
      linear-gradient(90deg, rgba(3,18,20,.5) 0%, rgba(3,18,20,.2) 100%);
  }
  .zp-hero-cover-content { max-width: 100%; }
  .zp-hero-cards { grid-template-columns: 1fr; gap: 14px; }
}

