* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #040816;
  color: #ffffff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 8, 22, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand h1 {
  font-size: 28px;
  line-height: 1;
}

.brand p {
  color: #9ab0d8;
  font-size: 13px;
  margin-top: 4px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

.menu a {
  color: #dce7ff;
  text-decoration: none;
  transition: 0.25s;
}

.menu a:hover {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #00c2ff, #4776ff, #b145ff);
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  box-shadow: 0 14px 28px rgba(71, 118, 255, 0.20);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
}

.btn-whats {
  background: linear-gradient(90deg, #20c863, #25D366);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.18);
}

.full {
  width: 100%;
}

.large {
  min-width: 220px;
}

.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
}

.bg-glow-1 {
  background: #00b7ff;
  top: -120px;
  left: -100px;
}

.bg-glow-2 {
  background: #b145ff;
  bottom: -180px;
  right: -80px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.tag,
.section-mini,
.section-title span,
.badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
  background: rgba(0, 194, 255, 0.12);
  color: #79dcff;
  border: 1px solid rgba(121, 220, 255, 0.18);
}

.hero-text h2 {
  margin-top: 18px;
  font-size: 54px;
  line-height: 1.08;
}

.hero-text h2 span {
  background: linear-gradient(90deg, #7bf2ff, #4f8fff, #d35dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.75;
  color: #d3ddf3;
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.stat-card span {
  color: #aab9d8;
  font-size: 14px;
  line-height: 1.5;
}

.hero-card .window,
.card,
.why-box,
.contact-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 24px;
}

.window {
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.36);
}

.window-top {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.window-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-top span:nth-child(1) { background: #ff6b6b; }
.window-top span:nth-child(2) { background: #ffd93d; }
.window-top span:nth-child(3) { background: #68ff8e; }

.dashboard {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(71,118,255,0.16), rgba(177,69,255,0.16));
}

.mini-label {
  color: #b6c7ea;
  font-size: 14px;
}

.dashboard h3 {
  margin: 10px 0 18px;
  font-size: 26px;
  line-height: 1.25;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.mini-box {
  padding: 16px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
}

.mini-box small {
  color: #b8c7e7;
  display: block;
  margin-bottom: 8px;
}

.line-card {
  margin-top: 14px;
}

.line-card span {
  display: block;
  margin-bottom: 8px;
  color: #c8d5ef;
  font-size: 14px;
}

.line {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #00c2ff, #b145ff);
}

.fill-a {
  width: 82%;
}

.fill-b {
  width: 91%;
}

.services,
.plans,
.why,
.contact {
  padding: 85px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-title h2 {
  font-size: 40px;
  margin-top: 14px;
}

.section-title p {
  color: #b6c4e1;
  margin-top: 14px;
  line-height: 1.7;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  padding: 28px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 194, 255, 0.30);
  box-shadow: 0 16px 34px rgba(0, 194, 255, 0.08);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 26px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.08);
}

.card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.card p,
.card li {
  color: #d2dcf0;
  line-height: 1.75;
}

.pricing .price {
  font-size: 34px;
  font-weight: bold;
  margin: 16px 0 18px;
}

.pricing ul {
  list-style: none;
  margin-bottom: 24px;
}

.pricing li {
  margin-bottom: 10px;
}

.featured {
  border-color: rgba(71,118,255,0.45);
  box-shadow: 0 0 24px rgba(71, 118, 255, 0.12);
}

.badge-highlight {
  background: rgba(177, 69, 255, 0.14);
  color: #eca8ff;
  border-color: rgba(236, 168, 255, 0.18);
}

.why-box,
.contact-box {
  padding: 34px;
}

.why-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.why-box h2,
.contact-box h2 {
  margin-top: 14px;
  font-size: 34px;
  line-height: 1.2;
}

.why-box p,
.contact-box p {
  color: #d0dcef;
  line-height: 1.8;
}

.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.floating-whats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.22);
}

.footer {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: #a4b5d5;
}

.hero-text,
.hero-card,
.card,
.section-title,
.why-box,
.contact-box {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav,
  .contact-box,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .cards-3,
  .hero-stats,
  .dashboard-grid,
  .why-box {
    grid-template-columns: 1fr;
  }

  .menu {
    flex-wrap: wrap;
  }

  .hero-text h2 {
    font-size: 38px;
  }

  .section-title h2,
  .why-box h2,
  .contact-box h2 {
    font-size: 28px;
  }

  .btn-whats {
    width: 100%;
  }
}

.plans {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 60px 20px;
  background: #050b1f;
}

.plan-card {
  background: #0b132b;
  border: 1px solid #1d4ed8;
  border-radius: 24px;
  padding: 30px;
  width: 340px;
  min-height: 430px;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.22);
  border-color: #3b82f6;
}

.plan-card h2 {
  color: #ffffff;
  font-size: 42px;
  margin: 18px 0 24px;
  font-weight: 700;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.plan-card ul li {
  color: #d1d5db;
  font-size: 25px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.badge {
  display: inline-block;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 191, 255, 0.12);
  border: 1px solid rgba(0, 191, 255, 0.35);
  color: #60d9ff;
  font-size: 14px;
  font-weight: 600;
}

.badge.destaque {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #d8a4ff;
}

.plan-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  padding: 16px 20px;
  border-radius: 16px;
  background: linear-gradient(90deg, #12b7ff, #a855f7);
  transition: 0.3s ease;
}

.plan-btn:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

.featured {
  transform: scale(1.03);
}

.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

@media (max-width: 1100px) {
  .plans {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 100%;
    max-width: 400px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 60px 0;
}

.topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 300px;
  padding: 20px;
  border-radius: 12px;
}

.botao {
  display: inline-block;
  padding: 12px 20px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 8px;
}

/* CELULAR */
@media (max-width: 768px) {
  .topo {
    flex-direction: column;
    text-align: center;
  }

  .menu {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .cards {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }

  h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
    line-height: 1.5;
  }

  .botao {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 40px 0;
  }
}