/* ==========================================================
   HOME v2 — NinjaHost · Plans Slider + Full Mobile
   ========================================================== */

/* ========================
   HERO
   ======================== */
.hero {
  padding-top: calc(7.5rem + env(safe-area-inset-top, 0px));
  padding-bottom: 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: 70vh;
  padding-top: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__badge-row { margin-bottom: 1.5rem; }

.hero__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 8px var(--red-bright);
  display: inline-block;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.hero__title-accent {
  color: inherit;
}

.hero__lead {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-2);
}
.hero__trust-item svg { color: var(--red-bright); flex-shrink: 0; }
.hero__trust-sep { color: var(--text-3); }

/* ---- VISUAL ---- */
.hero__visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 440px;
  margin-left: auto;
  width: 100%;
  isolation: isolate;
}

.hero-orb {
  position: absolute; inset: 15%; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(150, 120, 255,0.22), rgba(109, 74, 255,0.38) 40%, rgba(79, 47, 215,0.05) 70%);
  filter: blur(1px);
  animation: orb-float 7s ease-in-out infinite;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(109, 74, 255,0.22);
}
.hero-ring--a { inset: 8%; animation: ring-spin 18s linear infinite; }
.hero-ring--b { inset: 1%; border-color: rgba(109, 74, 255,0.12); animation: ring-spin-rev 28s linear infinite; }
.hero-ring--c { inset: 22%; border-color: rgba(109, 74, 255,0.3); animation: ring-spin 12s linear infinite; }

@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ring-spin-rev { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.hero-server {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 62%; display: flex; flex-direction: column; gap: 8px;
  padding: 1rem; border-radius: 14px;
  background: rgba(22,23,28,0.96);
  border: 1px solid rgba(109, 74, 255,0.28);
  box-shadow: 0 20px 50px rgba(20,21,26,0.20), 0 0 40px rgba(109, 74, 255,0.12);
  backdrop-filter: blur(8px);
}

.hero-server__unit {
  display: flex; align-items: center; gap: 8px;
  padding: 0.45rem 0.65rem; border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.hero-server__unit--active { border-color: rgba(109, 74, 255,0.3); background: rgba(109, 74, 255,0.04); }

.hero-server__led {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); flex-shrink: 0;
}
.hero-server__led--2 { width: 6px; height: 6px; }
.hero-server__led--active {
  background: var(--red-bright);
  box-shadow: 0 0 8px var(--red-bright);
  animation: led-blink 1.8s ease-in-out infinite;
}

@keyframes led-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-server__bar {
  flex: 1; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.1); overflow: hidden; position: relative;
}
.hero-server__bar::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 45%; background: rgba(255,255,255,0.22); border-radius: 3px;
}
.hero-server__bar--active::after {
  width: 72%;
  background: linear-gradient(90deg, var(--red-bright), var(--red));
  animation: bar-grow 3s ease-in-out infinite alternate;
}
@keyframes bar-grow { from { width: 55%; } to { width: 82%; } }

.hero-node {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--red-bright); box-shadow: 0 0 16px rgba(109, 74, 255,0.7);
}
.hero-node--a { top: 10%; left: 20%; animation: node-blink 2.2s ease-in-out infinite; }
.hero-node--b { right: 12%; top: 38%; animation: node-blink 3s ease-in-out 0.4s infinite; }
.hero-node--c { bottom: 18%; left: 44%; animation: node-blink 2.6s ease-in-out 0.8s infinite; }

@keyframes node-blink {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ---- STATS BAR ---- */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 0 0 clamp(3rem, 7vw, 5rem);
  background: var(--border);
  gap: 1px;
}

.hero__stat {
  display: flex; flex-direction: column; gap: 0.3rem;
  padding: 1.35rem 1.5rem; background: var(--bg-card);
}
.hero__stat strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.55rem);
  font-weight: 400; color: var(--red-bright); line-height: 1;
}
.hero__stat span { font-size: 0.78rem; color: var(--text-2); }

/* ========================
   SECTION HEAD
   ======================== */
.section-head {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 0.85rem; margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* ========================
   SERVIÇOS
   ======================== */
.services-section { background: var(--bg-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px; border-radius: var(--radius-xl);
  overflow: hidden; background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  display: flex; align-items: stretch; gap: 1rem;
  padding: 1.5rem 1.4rem; background: var(--bg-card);
  text-decoration: none; color: inherit;
  transition: background 0.22s ease;
  position: relative;
}
.service-card__icon { align-self: flex-start; }
.service-card__arrow { align-self: flex-start; }
.service-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background 0.22s ease;
}
.service-card:hover { background: var(--bg-card-hover); }
.service-card:hover::before { background: linear-gradient(90deg, var(--red-dark), var(--red-bright), var(--red-dark)); }

.service-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--red-border); background: var(--red-soft);
  color: var(--red-bright); margin-top: 0.15rem;
}
.service-card__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.service-card__title-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.45rem; }
.service-card__title-row .service-card__title { margin-bottom: 0; }

.service-card__badge {
  display: inline-block; font-family: var(--font-display);
  font-size: 0.46rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  padding: 0.2rem 0.5rem; border-radius: 999px;
}

.service-card__title { font-family: var(--font-body); font-weight: 400; font-size: 1.05rem; color: var(--text); margin-bottom: 0.45rem; }
.service-card__desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.5; margin-bottom: 0.75rem; }
.service-card__price { font-size: 0.82rem; color: var(--text-2); margin-top: auto; padding-top: 0.5rem; }
.service-card__price strong { color: var(--text); font-weight: 600; }
.service-card__price--link { color: var(--red-bright); font-weight: 500; }

.service-card__arrow {
  flex-shrink: 0; font-size: 1.2rem; color: var(--red-border);
  margin-top: 0.1rem; transition: color 0.2s ease, transform 0.2s ease;
}
.service-card:hover .service-card__arrow { color: var(--red-bright); transform: translateX(3px); }

/* ========================
   PLANOS — SLIDER (mobile) + GRID (desktop)
   ======================== */
.plans-section { background: var(--bg); }

.plans-trust-row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1rem 2.5rem; margin-bottom: 2.5rem;
}
.plans-trust-item { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.85rem; color: var(--text-2); }
.plans-trust-item svg { color: var(--red-bright); }

/* ---- SLIDER CONTAINER ---- */
.plans-slider {
  position: relative;
  overflow: hidden;
}

/* Desktop: grid normal */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto;
  gap: 1rem;
  align-items: stretch;
}

/* Mobile: carrossel de scroll */
@media (max-width: 56rem) {
  .plans-grid {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .plans-grid::-webkit-scrollbar { display: none; }

  .plan-card {
    flex: 0 0 calc(85vw - 2rem);
    max-width: 320px;
    scroll-snap-align: center;
  }
}


/* ========================
   DIFERENCIAIS
   ======================== */
.diff-section { background: var(--bg-2); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); grid-auto-rows: auto;
  gap: clamp(0.85rem, 2vw, 1.15rem);
}

.diff-card {
  display: flex; flex-direction: column; gap: 0.65rem;
  padding: clamp(1.25rem, 2.5vw, 1.6rem);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: var(--bg-card); transition: border-color 0.25s ease, transform 0.25s ease;
}
.diff-card:hover { border-color: var(--red-border); transform: translateY(-3px); }

.diff-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; border-radius: var(--radius-sm);
  border: 1px solid var(--red-border); background: var(--red-soft); color: var(--red-bright);
}
.diff-card__title { font-family: var(--font-body); font-weight: 400; font-size: 1rem; color: var(--text); margin: 0; }
.diff-card__text { font-size: 0.86rem; line-height: 1.55; color: var(--text-2); margin: 0; }

/* ========================
   UPTIME
   ======================== */
.uptime-section { background: var(--bg); }

.uptime-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 60.01rem) {
  .uptime-inner { align-items: start; }
  .uptime-content { padding-top: 0.5rem; }
}

.uptime-card {
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: var(--bg-card); overflow: hidden; margin-top: 1.5rem;
}

.uptime-card__head {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--border);
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-2);
}
.uptime-card__head strong { color: var(--text); }

.uptime-pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #3dd68c; box-shadow: 0 0 10px rgba(61,214,140,0.6); flex-shrink: 0;
  animation: up-pulse 2s ease-in-out infinite;
}
@keyframes up-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

.uptime-rows { list-style: none; }

.uptime-row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 0.65rem; align-items: center;
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.uptime-row:last-child { border-bottom: none; }

.uptime-dot { width: 7px; height: 7px; border-radius: 50%; background: #3dd68c; box-shadow: 0 0 6px rgba(61,214,140,0.5); }

.uptime-row__main { display: flex; flex-direction: column; gap: 0.1rem; }
.uptime-row__title { font-weight: 400; font-size: 0.88rem; color: var(--text); }
.uptime-row__desc { font-size: 0.75rem; color: var(--text-2); }
.uptime-row__state { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #15a05a; white-space: nowrap; }

.uptime-card__foot {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  padding: 0.75rem 1.1rem; font-size: 0.72rem; color: var(--text-2);
  border-top: 1px solid var(--border); background: rgba(10,12,20,0.03);
}
.uptime-card__foot strong { color: var(--text); font-weight: 500; }

.uptime-visual {
  position: relative; display: flex; align-items: center;
  justify-content: center; flex-direction: column;
}

/* card do gráfico */
.uptime-graph {
  position: relative;
  width: 100%; max-width: 390px;
  padding: 1.1rem 1.2rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.uptime-graph__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 0.75rem; margin-bottom: 0.7rem;
}
.uptime-graph__status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--text-2);
}
.uptime-graph__status-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.16);
  animation: up-pulse 2s ease-in-out infinite;
}
.uptime-graph__metric { display: flex; flex-direction: column; align-items: flex-end; line-height: 1; }
.uptime-graph__metric strong { font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; color: var(--text); letter-spacing: -0.02em; }
.uptime-graph__metric small { font-size: 0.62rem; color: var(--text-3); margin-top: 0.25rem; }

.uptime-chart { display: block; width: 100%; }

.uptime-graph__axis {
  display: flex; justify-content: space-between;
  margin-top: 0.35rem; padding: 0 2px;
  font-family: var(--font-body); font-size: 0.58rem; color: var(--text-3);
}

.uptime-line-anim {
  stroke-dasharray: 640; stroke-dashoffset: 640;
  animation: draw-line 2.5s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes draw-line { to { stroke-dashoffset: 0; } }

.uptime-endpoint-halo { animation: up-endpoint 2s ease-in-out infinite; transform-origin: 334px 40px; }
@keyframes up-endpoint {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 0.15; transform: scale(1.9); }
}

.uptime-chart__label {
  margin: 0.7rem 0 0; padding-top: 0.7rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display); font-size: 0.5rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; text-align: center; color: var(--text-3);
}

.uptime-badge-247 {
  position: absolute; top: 1.5rem; right: -0.85rem;
  padding: 0.4rem 0.75rem; font-family: var(--font-display); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.06em; color: #fff; border-radius: 999px;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 8px 20px rgba(109,74,255,0.35);
}

/* ----- pontos (coluna de texto) ----- */
.uptime-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.7rem; }
.uptime-points li { display: flex; align-items: flex-start; gap: 0.8rem; }
.uptime-points__ico {
  display: flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem; flex-shrink: 0; border-radius: 10px;
  color: #15a05a; background: rgba(34,197,94,0.10); border: 1px solid rgba(34,197,94,0.22);
  margin-top: 0.1rem;
}
.uptime-points__txt { display: flex; flex-direction: column; gap: 0.15rem; }
.uptime-points__txt strong { font-family: var(--font-display); font-weight: 500; font-size: 0.98rem; color: var(--text); }
.uptime-points__txt span { font-size: 0.84rem; color: var(--text-2); line-height: 1.45; }

/* ----- painel de status (dashboard escuro) ----- */
.ustat-wrap { position: relative; width: 100%; max-width: 460px; margin: 0 auto; }
.ustat { width: 100%; max-width: none; }

.ustat__chart { display: flex; flex-direction: column; }
.ustat__chart-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.55rem; }
.ustat__chart-title { font-size: 0.7rem; color: #9aa3b8; }
.ustat__chart-val { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: #fff; letter-spacing: -0.01em; }
.ustat__axis { display: flex; justify-content: space-between; margin-top: 0.35rem; padding: 0 2px; font-size: 0.58rem; color: #6b7390; }

.ustat__rows { display: flex; flex-direction: column; }
.ustat__row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 0.65rem; align-items: center;
  padding: 0.6rem 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.ustat__row:first-child { border-top: none; }
.ustat__row-dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 6px rgba(52,211,153,0.5); }
.ustat__row-main { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.ustat__row-main strong { font-size: 0.84rem; font-weight: 500; color: #eef1f8; }
.ustat__row-main small { font-size: 0.68rem; color: #828caa; }
.ustat__row-state { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #34d399; white-space: nowrap; }
@media (prefers-reduced-motion: reduce) {
  .uptime-line-anim { animation: none; stroke-dashoffset: 0; }
  .uptime-endpoint-halo, .uptime-graph__status-dot { animation: none; }
}

/* ========================
   CTA FINAL
   ======================== */
.cta-section { background: var(--bg-2); border-top: 1px solid var(--border) !important; }

.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; }

.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60%; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(109, 74, 255,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content { position: relative; text-align: center; max-width: 580px; }

.cta-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem); letter-spacing: -0.025em;
  color: var(--text); margin-bottom: 0.85rem;
}
.cta-lead { font-size: 1rem; color: var(--text-2); line-height: 1.6; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.85rem; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 64rem) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero__content { align-items: center; }
  .hero__lead { text-align: center; max-width: none; }
  .hero__visual { max-width: 320px; margin: 0 auto; }
  .hero__trust { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__badge-row { display: flex; justify-content: center; }
}

@media (max-width: 48rem) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .uptime-inner { grid-template-columns: 1fr; }
  .uptime-visual { order: -1; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 32rem) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 1.7rem; }
  .hero__stat { padding: 1rem; }
}

/* ================================================
   VPS PLANS — Layout 3+3 estilo profissional
   ================================================ */

.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.plans-row--top { align-items: start; }
.plans-row--bottom { align-items: stretch; }

/* ---- VPS CARD ---- */
.vps-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.vps-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(109, 74, 255,0.06), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}

.vps-card:hover {
  border-color: var(--red-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20,21,26,.12), 0 0 0 1px rgba(109, 74, 255,.08);
}
.vps-card:hover::before { opacity: 1; }

/* FEATURED — center top, elevated */
.vps-card--featured {
  border-color: var(--red);
  background: linear-gradient(170deg,
    rgba(109, 74, 255,0.14) 0%,
    rgba(79, 47, 215,0.06) 35%,
    var(--bg-card) 65%);
  box-shadow:
    0 0 0 1px rgba(109, 74, 255,.2),
    0 4px 32px rgba(109, 74, 255,.15),
    0 20px 60px rgba(20,21,26,.14);
  transform: translateY(-8px);
  z-index: 2;
}

.vps-card--featured:hover {
  transform: translateY(-14px);
  box-shadow:
    0 0 0 1px rgba(109, 74, 255,.3),
    0 8px 40px rgba(109, 74, 255,.22),
    0 24px 80px rgba(20,21,26,.16);
}

.vps-card--featured::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red-bright) 50%, var(--red-dark));
}

/* SLIM (bottom row) */
.vps-card--slim {
  padding: 1.25rem 1.4rem;
}
.vps-card--slim:hover { transform: translateY(-3px); }

/* ---- RIBBON ---- */
.vps-card__ribbon {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.vps-card__ribbon svg { color: var(--red-bright); }

/* ---- TOP SECTION ---- */
.vps-card__top { margin-bottom: 0; }

.vps-card__label {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 0.55rem;
}
.vps-card--featured .vps-card__label { color: var(--red); }

.vps-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.vps-card__price-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.vps-card--featured .vps-card__price-num {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
}

.vps-card__price-mo { font-size: 0.8rem; color: var(--text-2); }

.vps-card__badge-row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.vps-card__badge {
  font-family: var(--font-display);
  font-size: 0.45rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(109, 74, 255,.3);
  color: var(--red-bright);
  background: rgba(109, 74, 255,.08);
}

/* ---- DIVIDER ---- */
.vps-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 1.1rem 0;
}
.vps-card--featured .vps-card__divider {
  background: linear-gradient(90deg, transparent, rgba(109, 74, 255,.35), transparent);
}

/* ---- SPECS ---- */
.vps-card__specs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  margin-bottom: 1.25rem;
  list-style: none;
}

.vps-card__specs li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-2);
}
.vps-card__specs li svg {
  flex-shrink: 0;
  color: var(--red-bright);
  opacity: .85;
}
.vps-card--featured .vps-card__specs li { color: var(--text); }

/* Specs row (slim bottom) */
.vps-card__specs--row {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}
.vps-card__specs--row li { font-size: 0.82rem; }

/* ---- CTA ---- */
.vps-card__cta {
  display: block;
  width: 100%;
  padding: 0.75rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--red-border);
  color: var(--red-bright);
  background: var(--red-soft);
  transition: all .2s ease;
}
.vps-card__cta:hover {
  background: rgba(109, 74, 255,.18);
  border-color: var(--red);
}

.vps-card__cta--hot {
  color: #fff;
  background: linear-gradient(135deg, var(--red-bright), var(--red) 60%, var(--red-dark));
  border-color: var(--red);
  box-shadow: var(--shadow-btn);
  font-size: 0.95rem;
  padding: 0.85rem;
}
.vps-card__cta--hot:hover {
  filter: brightness(1.08);
  box-shadow: var(--shadow-md);
}

.vps-card__cta--slim {
  padding: 0.6rem;
  font-size: 0.82rem;
  margin-top: auto;
}

.vps-card__note {
  margin: 0.65rem 0 0;
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-3);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 64rem) {
  .plans-row { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
}

@media (max-width: 48rem) {
  .plans-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .vps-card--featured {
    transform: none;
    order: -1;
  }
  .vps-card--featured:hover { transform: translateY(-4px); }
}

/* Pré-título em texto puro (estilo Hostinger) — destaque só no % */
.hero__pretitle {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 600;
  color: var(--text);
}
.hero__pretitle-hl { color: var(--red); }

/* ============================================================
   HERO ESCURO (topo das páginas) — conecta com a navbar.
   Glows suaves (blur). O resto da página continua claro.
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 65% at 10% 6%, rgba(123, 92, 240, 0.30), transparent 60%),
    radial-gradient(ellipse 48% 60% at 94% -4%, rgba(90, 58, 230, 0.24), transparent 56%),
    radial-gradient(ellipse 75% 50% at 62% 104%, rgba(70, 45, 150, 0.20), transparent 72%),
    linear-gradient(180deg, #0d0b1c 0%, #14112c 48%, #17142f 100%);
  color: #e7e4f4;
}

/* texto claro dentro do hero escuro */
.hero .hero__title { color: #ffffff; }
.hero .hero__title-accent { color: #bcabff; }
.hero .hero__lead { color: #c6c2e2; }
.hero .hero__pretitle { color: #efedf9; }
.hero .hero__pretitle-hl { color: #bcabff; }
.hero .hero__trust-item { color: #aba7cc; }
.hero .hero__trust-item svg { color: #bcabff; }
.hero .hero__trust-sep { color: #6f6b96; }

/* badge "500+ servidores" no escuro */
.hero .nh-badge--outline {
  color: #cdc2ff;
  border-color: rgba(160, 130, 255, 0.40);
  background: rgba(123, 92, 240, 0.14);
}

/* botão fantasma (Fale conosco / WhatsApp) no escuro */
.hero .btn-ghost {
  color: #efedf9;
  border-color: rgba(255, 255, 255, 0.22);
}
.hero .btn-ghost:hover {
  color: #ffffff;
  border-color: rgba(160, 130, 255, 0.6);
  background: rgba(123, 92, 240, 0.14);
}

/* "Ver planos": sem borda estático, borda aparece só no hover */
.hero .btn-ghost.hero__cta-plans {
  border-color: transparent;
  transition: color .2s ease, background .2s ease, border-color .28s ease;
}
.hero .btn-ghost.hero__cta-plans:hover {
  border-color: rgba(160, 130, 255, 0.6);
}
/* chevron: desce suavemente / bounce no hover */
.hero__cta-plans .btn__chevron {
  transition: transform .28s ease;
}
.hero__cta-plans:hover .btn__chevron {
  animation: chev-bounce .9s ease-in-out infinite;
}
@keyframes chev-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__cta-plans:hover .btn__chevron { animation: none; transform: translateY(3px); }
}

/* barra de stats no escuro */
.hero .hero__stats {
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.10);
}
.hero .hero__stat { background: rgba(255, 255, 255, 0.03); }
.hero .hero__stat strong { color: #bcabff; }
.hero .hero__stat span { color: #aba7cc; }

/* ===========================================================
   HERO DASHBOARD PANEL — página /hosting (estilo painel)
   =========================================================== */
.hero__visual--panel { aspect-ratio: auto; max-width: 460px; }

.hpanel {
  width: 100%;
  border-radius: 16px;
  background: linear-gradient(180deg, #0c1322 0%, #0a0f1c 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  overflow: hidden;
  font-family: var(--font-body);
}

/* chrome do navegador */
.hpanel__chrome {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.6rem 0.85rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hpanel__dot { width: 10px; height: 10px; border-radius: 50%; }
.hpanel__dot--r { background: #ff5f57; }
.hpanel__dot--y { background: #febc2e; }
.hpanel__dot--g { background: #28c840; }
.hpanel__url {
  flex: 1; margin-left: 0.4rem; padding: 0.3rem 0.7rem;
  text-align: center; font-size: 0.68rem; color: #8590a8;
  background: rgba(255,255,255,0.04); border-radius: 7px;
}

.hpanel__body { padding: 0.95rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* banner alta performance */
.hpanel__banner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 0.9rem; border-radius: 10px;
  background: linear-gradient(90deg, rgba(59,99,235,0.18), rgba(59,99,235,0.04));
  border: 1px solid rgba(91,140,255,0.22);
}
.hpanel__banner-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.13em; color: #7ea2ff;
}
.hpanel__online { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.7rem; color: #b9c2d6; }
.hpanel__online-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }

/* linha do site */
.hpanel__siterow { display: flex; align-items: center; justify-content: space-between; }
.hpanel__site { display: flex; align-items: center; gap: 0.6rem; }
.hpanel__site-ico {
  display: flex; align-items: center; justify-content: center;
  width: 2.1rem; height: 2.1rem; border-radius: 9px;
  background: rgba(124,92,255,0.16); color: #b3a0ff; border: 1px solid rgba(124,92,255,0.25);
}
.hpanel__site-txt { display: flex; flex-direction: column; line-height: 1.25; }
.hpanel__site-txt strong { font-size: 0.84rem; font-weight: 600; color: #eef1f8; }
.hpanel__site-txt small { font-size: 0.65rem; color: #828caa; }
.hpanel__chip {
  font-size: 0.6rem; font-weight: 600; color: #c7cedd;
  padding: 0.3rem 0.6rem; border-radius: 7px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
}

/* 3 cards de status */
.hpanel__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; }
.hpanel__card {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 0.85rem 0.45rem; border-radius: 11px; text-align: center;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
}
.hpanel__ring { position: relative; width: 54px; height: 54px; }
.hpanel__ring svg { width: 100%; height: 100%; }
.hpanel__ring-track { fill: none; stroke: rgba(255,255,255,0.09); stroke-width: 5; }
.hpanel__ring-val { fill: none; stroke: #22c55e; stroke-width: 5; stroke-linecap: round; }
.hpanel__ring-num { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; color: #eef1f8; }
.hpanel__card-badge {
  display: flex; align-items: center; justify-content: center;
  width: 2.35rem; height: 2.35rem; border-radius: 10px;
  background: rgba(34,197,94,0.12); color: #34d399; border: 1px solid rgba(34,197,94,0.22);
}
.hpanel__card-title { font-size: 0.82rem; font-weight: 600; color: #34d399; }
.hpanel__card-sub { font-size: 0.6rem; color: #828caa; }

/* gráfico 7 dias */
.hpanel__chart { padding: 0.85rem 0.9rem; border-radius: 11px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); }
.hpanel__chart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; }
.hpanel__chart-title { font-size: 0.72rem; font-weight: 600; color: #d3d9e6; }
.hpanel__legend { display: inline-flex; gap: 0.7rem; }
.hpanel__leg { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.6rem; color: #9aa3b8; }
.hpanel__leg::before { content: ""; width: 7px; height: 7px; border-radius: 50%; }
.hpanel__leg--up::before { background: #22c55e; }
.hpanel__leg--tt::before { background: #3b6fd4; }
.hpanel__bars { display: flex; align-items: flex-end; justify-content: space-between; height: 76px; gap: 0.3rem; }
.hpanel__day { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; flex: 1; height: 100%; }
.hpanel__day-bars { display: flex; align-items: flex-end; justify-content: center; gap: 2px; flex: 1; width: 100%; }
.hpanel__bar { width: 8px; border-radius: 3px 3px 0 0; }
.hpanel__bar--up { background: linear-gradient(180deg, #2dd47f, #1f9e62); }
.hpanel__bar--tt { background: linear-gradient(180deg, #4d7fd6, #2d4f9e); }
.hpanel__day small { font-size: 0.54rem; color: #6b7390; }

/* rodapé */
.hpanel__foot { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.hpanel__foot-card { display: flex; align-items: center; gap: 0.5rem; padding: 0.65rem 0.7rem; border-radius: 10px; background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06); }
.hpanel__foot-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.16); flex-shrink: 0; }
.hpanel__foot-txt { display: flex; flex-direction: column; line-height: 1.3; }
.hpanel__foot-txt strong { font-size: 0.7rem; font-weight: 600; color: #e7ecf5; }
.hpanel__foot-txt small { font-size: 0.6rem; color: #828caa; }

@media (max-width: 60rem) {
  .hero__visual--panel { max-width: 440px; margin: 0 auto; }
}

/* ===========================================================
   HERO DASHBOARD PANEL — extras VPS (/vps)
   =========================================================== */
.hpanel__banner--green {
  background: linear-gradient(90deg, rgba(34,197,94,0.16), rgba(34,197,94,0.03));
  border-color: rgba(34,197,94,0.26);
}
.hpanel__banner--green .hpanel__banner-label { color: #34d399; }

.hpanel__chip--kvm {
  color: #34d399; background: rgba(34,197,94,0.10); border-color: rgba(34,197,94,0.28);
}

/* faixa de ícones de SO */
.hpanel__os {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 0.7rem; border-radius: 11px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
}
.hpanel__os-ico { display: flex; flex: 1; align-items: center; justify-content: center; }
.hpanel__os-ico svg { width: 19px; height: 19px; display: block; fill: #aeb6c8; transition: fill .2s ease; }
.hpanel__os-ico:hover svg { fill: #fff; }
.hpanel__os-more { color: #6b7390; font-size: 0.7rem; letter-spacing: 1px; padding-left: 0.1rem; }

/* medidores CPU / RAM / NVMe */
.hpanel__meters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.55rem; }
.hpanel__meter {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 0.7rem 0.75rem; border-radius: 10px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
}
.hpanel__meter-top { display: flex; align-items: center; justify-content: space-between; font-size: 0.64rem; color: #9aa3b8; }
.hpanel__meter-top b { font-weight: 700; color: #e7ecf5; }
.hpanel__meter-track { height: 6px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.hpanel__meter-fill { display: block; height: 100%; border-radius: 4px; }
.hpanel__meter-fill--blue  { background: linear-gradient(90deg, #4d7fd6, #3b6fd4); }
.hpanel__meter-fill--green { background: linear-gradient(90deg, #2dd47f, #1f9e62); }
.hpanel__meter-fill--gray  { background: linear-gradient(90deg, #9aa3b8, #7c849e); }

/* rede + uptime */
.hpanel__row2 { display: grid; grid-template-columns: 1.3fr 1fr; gap: 0.55rem; }
.hpanel__net, .hpanel__uptime {
  padding: 0.8rem 0.85rem; border-radius: 11px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
}
.hpanel__net-val { font-size: 0.62rem; font-weight: 600; }
.hpanel__net .hpanel__net-val { color: #7fb0ff; }
.hpanel__uptime .hpanel__net-val { color: #34d399; }
.hpanel__netbars { display: flex; align-items: flex-end; gap: 3px; height: 54px; margin-top: 0.55rem; }
.hpanel__netbar { flex: 1; min-width: 4px; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #4d7fd6, #2d4f9e); }
.hpanel__uptime { display: flex; flex-direction: column; }
.hpanel__ring--lg { width: 72px; height: 72px; margin: 0.45rem auto 0; }
.hpanel__ring-num--sm { font-size: 0.82rem; color: #34d399; }

.hpanel__foot--3 { grid-template-columns: repeat(3, 1fr); }

/* ===========================================================
   HERO NINJA — silhueta no hero da home
   =========================================================== */
.hero-ninja {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 26px 52px rgba(8, 6, 20, 0.55));
  animation: ninja-float 7s ease-in-out infinite;
}
@keyframes ninja-float {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 10px)); }
}

.hero-ninja__svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* olhos: brilho + piscada ocasional */
.hero-ninja__eyes {
  filter: drop-shadow(0 0 6px rgba(160, 130, 255, 0.9));
  animation: ninja-eyes 5s ease-in-out infinite;
}
@keyframes ninja-eyes {
  0%, 90%, 100% { opacity: 1; }
  93%           { opacity: 0.12; }
  96%           { opacity: 1; }
}

/* faixa (tails) balançando */
.hero-ninja__tail { transform-origin: 150px 100px; animation: ninja-tail 5s ease-in-out infinite; }
.hero-ninja__tail + .hero-ninja__tail { animation-delay: 0.45s; }
@keyframes ninja-tail {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(4.5deg); }
}

/* corte de luz / sombra percorrendo */
.hero-ninja__slash {
  position: absolute; inset: -32%;
  background: linear-gradient(115deg,
    transparent 46%,
    rgba(230, 224, 255, 0.0) 48%,
    rgba(232, 226, 255, 0.7) 50%,
    rgba(230, 224, 255, 0.0) 52%,
    transparent 54%);
  transform: translateX(-78%);
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 52%, transparent 72%);
  mask: radial-gradient(circle at 50% 50%, #000 52%, transparent 72%);
  animation: ninja-slash 6.5s ease-in-out infinite;
}
@keyframes ninja-slash {
  0%, 56%   { transform: translateX(-78%); opacity: 0; }
  64%       { opacity: 1; }
  80%, 100% { transform: translateX(78%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-ninja,
  .hero-ninja__eyes,
  .hero-ninja__tail { animation: none; }
  .hero-ninja__slash { display: none; }
}

/* ===========================================================
   HERO PANEL — grade de serviços (home)
   =========================================================== */
.hpanel__svc { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.hpanel__svc-tile {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 0.65rem; border-radius: 11px;
  background: rgba(255, 255, 255, 0.025); border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.hpanel__svc-tile:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.04); }
.hpanel__svc-ico {
  display: flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem; flex-shrink: 0; border-radius: 9px;
}
.hpanel__svc-txt { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.hpanel__svc-txt strong { font-size: 0.78rem; font-weight: 600; color: #eef1f8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hpanel__svc-txt small  { font-size: 0.62rem; color: #828caa; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.hpanel__svc-ico--v { background: rgba(124,92,255,0.16);  color: #b3a0ff; border: 1px solid rgba(124,92,255,0.25); }
.hpanel__svc-ico--b { background: rgba(77,127,214,0.16);  color: #8fb4ff; border: 1px solid rgba(77,127,214,0.26); }
.hpanel__svc-ico--g { background: rgba(34,197,94,0.14);   color: #4ade80; border: 1px solid rgba(34,197,94,0.24); }
.hpanel__svc-ico--t { background: rgba(20,184,166,0.16);  color: #5eead4; border: 1px solid rgba(20,184,166,0.26); }
.hpanel__svc-ico--a { background: rgba(245,158,11,0.16);  color: #fbbf24; border: 1px solid rgba(245,158,11,0.26); }
.hpanel__svc-ico--p { background: rgba(236,72,153,0.16);  color: #f472b6; border: 1px solid rgba(236,72,153,0.26); }

.hpanel__foot--1 { grid-template-columns: 1fr; }

/* ===========================================================
   BALÕES FLUTUANTES — stats ao redor do painel (home)
   =========================================================== */
.page-home .hero,
.page-vps .hero,
.page-contact .hero,
.page-protection .hero { padding-bottom: clamp(3rem, 6vw, 5rem); }

.hero-float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(20, 18, 40, 0.74);
  border: 1px solid rgba(160, 130, 255, 0.22);
  box-shadow: 0 14px 32px rgba(8, 6, 20, 0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: hero-float-move 6s ease-in-out infinite;
}
.hero-float__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hero-float__dot--v { background: #b3a0ff; box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.18); }
.hero-float__dot--g { background: #4ade80; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16); }
.hero-float__dot--b { background: #8fb4ff; box-shadow: 0 0 0 4px rgba(77, 127, 214, 0.16); }
.hero-float__dot--a { background: #fbbf24; box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16); }
.hero-float__txt { display: flex; flex-direction: column; line-height: 1.12; }
.hero-float__txt strong { font-family: var(--font-display); font-size: 0.92rem; font-weight: 500; color: #fff; }
.hero-float__txt small  { font-size: 0.6rem; color: #aba7cc; }

.hero-float--1 { top: 1%;     left: -11%; animation-delay: 0s; }
.hero-float--2 { top: 13%;    right: -8%; animation-delay: -1.5s; }
.hero-float--3 { bottom: 30%; left: -13%; animation-delay: -3s; }
.hero-float--4 { bottom: 0%;  right: -7%; animation-delay: -4.5s; }

@keyframes hero-float-move {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

@media (max-width: 60rem) {
  .hero-float { display: none; }   /* evita overflow no mobile */
}
@media (prefers-reduced-motion: reduce) {
  .hero-float { animation: none; }
}

/* ===========================================================
   FAIXA DE DATACENTERS PARCEIROS (home, no hero escuro)
   =========================================================== */
.hero-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 1.8rem);
  margin-top: clamp(1.5rem, 4vw, 2.75rem);
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-partners__label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a86ad;
}
.hero-partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.6rem, 5vw, 3.6rem);
  width: 100%;
}
.hero-partners__logo {
  height: 26px;
  width: auto;
  opacity: 0.72;
  filter: saturate(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-partners__logo:hover { opacity: 1; transform: translateY(-2px); }

@media (max-width: 40rem) {
  .hero-partners__logo { height: 21px; }
  .hero-partners__logos { gap: 1.4rem 2rem; }
}

/* ===========================================================
   VITRINE DE PLANOS — home (1 hospedagem + 1 VPS)
   =========================================================== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  max-width: 960px;
  margin: 0 auto;
}
.showcase-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-border);
}
.showcase-card--featured { border-color: var(--red-border); }

.showcase-card__ribbon {
  position: absolute; top: -1px; right: 1.4rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.32rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.54rem; font-weight: 600; letter-spacing: 0.14em;
  color: #fff; border-radius: 0 0 8px 8px;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
}

.showcase-card__top { display: flex; align-items: center; gap: 0.8rem; }
.showcase-card__ico {
  display: flex; align-items: center; justify-content: center;
  width: 2.8rem; height: 2.8rem; flex-shrink: 0; border-radius: 12px;
}
.showcase-card__ico--v { background: rgba(109,74,255,0.10); color: var(--red-bright); border: 1px solid var(--red-border); }
.showcase-card__ico--b { background: rgba(77,127,214,0.12); color: #4d7fd6; border: 1px solid rgba(77,127,214,0.28); }
.showcase-card__id { display: flex; flex-direction: column; gap: 0.2rem; }
.showcase-card__id strong { font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; color: var(--text); letter-spacing: -0.01em; }
.showcase-card__id small { font-size: 0.82rem; color: var(--text-2); line-height: 1.35; }

.showcase-card__specs { display: flex; flex-direction: column; gap: 0.5rem; }
.showcase-card__specs li {
  position: relative; padding-left: 1.1rem;
  font-size: 0.86rem; color: var(--text-2); line-height: 1.4;
}
.showcase-card__specs li::before {
  content: ""; position: absolute; left: 0; top: 0.5rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--red-bright);
}

.showcase-card__price {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding-top: 0.9rem; margin-top: auto;
  border-top: 1px solid var(--border);
}
.showcase-card__from { font-size: 0.72rem; color: var(--text-3); }
.showcase-card__val {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem); color: var(--text); line-height: 1;
}
.showcase-card__val small { font-size: 0.9rem; font-weight: 400; color: var(--text-3); }
.showcase-card__ctx { font-size: 0.7rem; color: var(--text-3); }

.showcase-card__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  margin-top: 0.4rem; padding: 0.75rem 1.2rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.9rem;
  border-radius: 999px; color: #fff;
  background: linear-gradient(135deg, var(--red-bright), var(--red) 60%, var(--red-dark));
  box-shadow: var(--shadow-btn);
  transition: filter .2s ease;
}
.showcase-card:hover .showcase-card__cta { filter: brightness(1.08); }
.showcase-card__cta svg { transition: transform .2s ease; }
.showcase-card:hover .showcase-card__cta svg { transform: translateX(3px); }

@media (max-width: 40rem) {
  .showcase-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   DEPOIMENTOS — slider (1 por vez, card escuro)
   =========================================================== */
.tm-section { background: var(--bg-2); }
.tm-slider { max-width: 880px; margin: 0 auto; }
.tm-viewport { overflow: hidden; border-radius: var(--radius-xl); }
.tm-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }

.tm-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 3vw, 1.8rem);
  padding: clamp(1.8rem, 5vw, 3.2rem);
  background:
    radial-gradient(ellipse 60% 80% at 12% 8%, rgba(123,92,240,0.22), transparent 60%),
    linear-gradient(160deg, #15122b 0%, #0d0b1c 60%, #0b0917 100%);
  color: #e9e6f6;
}

.tm-quote__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  box-shadow: 0 8px 22px rgba(109,74,255,0.35);
}

.tm-quote__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  line-height: 1.38;
  letter-spacing: -0.012em;
  color: #f3f1fb;
}
.tm-quote__hl { color: #a78bfa; }

.tm-quote__sep { height: 1px; background: rgba(255,255,255,0.12); }

.tm-quote__author { display: flex; flex-direction: column; gap: 0.15rem; }
.tm-quote__author strong { font-family: var(--font-display); font-weight: 500; font-size: 1rem; color: #fff; }
.tm-quote__author small { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; color: #aba7cc; }

.tm-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.1rem; margin-top: clamp(1.2rem, 3vw, 1.8rem);
}
.tm-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: all .2s ease;
}
.tm-arrow:hover { border-color: var(--red-border); color: var(--red-bright); background: var(--red-soft); transform: translateY(-1px); }

.tm-dots { display: flex; align-items: center; gap: 0.5rem; }
.tm-dot {
  width: 8px; height: 8px; padding: 0;
  border: none; border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: all .25s ease;
}
.tm-dot:hover { background: var(--text-3); }
.tm-dot.is-active { width: 22px; border-radius: 4px; background: var(--red-bright); }

/* ===========================================================
   CHAT DE SUPORTE — painel do hero (página contato)
   =========================================================== */
.hchat { padding: 0.9rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.8rem; }
.hchat__head {
  display: flex; align-items: center; gap: 0.6rem;
  padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hchat__avatar {
  display: flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem; flex-shrink: 0; border-radius: 9px;
  color: #b3a0ff; background: rgba(124,92,255,0.16); border: 1px solid rgba(124,92,255,0.25);
}
.hchat__id { display: flex; flex-direction: column; line-height: 1.25; }
.hchat__id strong { font-size: 0.85rem; font-weight: 600; color: #eef1f8; }
.hchat__id small { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.66rem; color: #4ade80; }
.hchat__live { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.18); }

.hchat__body { display: flex; flex-direction: column; gap: 0.55rem; }
.hchat__msg { display: flex; align-items: flex-end; gap: 0.5rem; max-width: 86%; }
.hchat__msg--in  { align-self: flex-start; }
.hchat__msg--out { align-self: flex-end; flex-direction: row-reverse; }
.hchat__ava {
  display: flex; align-items: center; justify-content: center;
  width: 1.5rem; height: 1.5rem; flex-shrink: 0; border-radius: 50%;
  font-size: 0.6rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, #8b6cff, #4f2fd7);
}
.hchat__bubble {
  padding: 0.55rem 0.78rem; border-radius: 13px;
  font-size: 0.82rem; line-height: 1.4; color: #e7e4f4;
}
.hchat__msg--in .hchat__bubble {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06);
  border-bottom-left-radius: 4px;
}
.hchat__msg--out .hchat__bubble {
  background: linear-gradient(135deg, #6d4aff, #4f2fd7); color: #fff;
  border-bottom-right-radius: 4px;
}
.hchat__bubble time { display: block; margin-top: 0.22rem; font-size: 0.58rem; opacity: 0.6; }

.hchat__bubble--typing { display: flex; gap: 4px; padding: 0.7rem 0.8rem; }
.hchat__bubble--typing i {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.55);
  animation: hchat-typing 1.2s infinite ease-in-out;
}
.hchat__bubble--typing i:nth-child(2) { animation-delay: 0.2s; }
.hchat__bubble--typing i:nth-child(3) { animation-delay: 0.4s; }
@keyframes hchat-typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

.hchat__input {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 0.3rem; padding: 0.5rem 0.5rem 0.5rem 0.9rem;
  border-radius: 999px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.hchat__input-text { flex: 1; font-size: 0.78rem; color: #8b93a7; }
.hchat__send {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; flex-shrink: 0; border-radius: 50%;
  color: #fff; background: linear-gradient(135deg, #8b6cff, #4f2fd7);
}

@media (prefers-reduced-motion: reduce) {
  .hchat__bubble--typing i { animation: none; }
}

/* medidor de ataques (vermelho) — dash de proteção */
.hpanel__meter-fill--red { background: linear-gradient(90deg, #f87171, #dc2626); }
