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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #020617;
  color: #ffffff;
}

a {
  text-decoration: none;
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(168, 85, 247, 0.25), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(6, 182, 212, 0.22), transparent 28%),
    radial-gradient(circle at 50% 90%, rgba(34, 197, 94, 0.12), transparent 32%),
    #020617;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 7%;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
  padding: 4px;
}

.logo small {
  display: block;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  gap: 28px;
}

.menu a {
  color: #cbd5e1;
  font-weight: 600;
  transition: 0.3s ease;
}

.menu a:hover {
  color: #67e8f9;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 900;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #86efac);
  padding: 12px 20px;
  color: #02110a;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.25);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 110px 7% 90px;
}

.badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 10px 16px;
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 999px;
  color: #a5f3fc;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  font-weight: 800;
  font-size: 14px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero h1 span {
  background: linear-gradient(135deg, #a855f7, #22d3ee, #86efac);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 620px;
  color: #cbd5e1;
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, #a855f7, #06b6d4);
  padding: 16px 26px;
  color: white;
  box-shadow: 0 24px 55px rgba(6, 182, 212, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  color: white;
  padding: 16px 26px;
  backdrop-filter: blur(12px);
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.orb {
  position: absolute;
  inset: 50px 30px auto auto;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.45), rgba(168, 85, 247, 0.25), transparent 70%);
  filter: blur(12px);
  animation: float 5s ease-in-out infinite alternate;
}

.dashboard {
  position: relative;
  margin-top: 40px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.42);
}

.window-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ef4444;
}

.window-dots span:nth-child(2) {
  background: #facc15;
}

.window-dots span:nth-child(3) {
  background: #22c55e;
}

.metric-main {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, #a855f7, #06b6d4);
  color: white;
  margin-bottom: 16px;
}

.metric-main strong {
  display: block;
  font-size: 38px;
  margin-top: 8px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.metric {
  padding: 20px;
  border-radius: 22px;
  background: rgba(2, 6, 23, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric span {
  color: #94a3b8;
  font-size: 14px;
}

.metric strong {
  display: block;
  font-size: 30px;
  margin-top: 8px;
}

.section {
  padding: 90px 7%;
  text-align: center;
}

.section-label {
  color: #67e8f9;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.05em;
  margin-bottom: 46px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

.card {
  position: relative;
  overflow: hidden;
  text-align: left;
  min-height: 210px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 30px;
  transition: 0.35s ease;
  backdrop-filter: blur(16px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(103, 232, 249, 0.18), transparent 40%);
  opacity: 0;
  transition: 0.35s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(6, 182, 212, 0.18);
}

.card:hover::before {
  opacity: 1;
}

.icon {
  position: relative;
  font-size: 42px;
  margin-bottom: 22px;
}

.card h3 {
  position: relative;
  font-size: 24px;
  margin-bottom: 14px;
}

.card p,
.card blockquote {
  position: relative;
  color: #cbd5e1;
  line-height: 1.7;
}

.section-dark {
  background: rgba(255, 255, 255, 0.035);
}

.results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.result-box {
  padding: 28px;
  border-radius: 26px;
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-box strong {
  display: block;
  color: #86efac;
  font-size: 30px;
  margin-bottom: 8px;
}

.result-box span {
  color: #cbd5e1;
}

.cta {
  margin: 90px 7%;
  padding: 70px 30px;
  text-align: center;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.95), rgba(6, 182, 212, 0.92));
  box-shadow: 0 35px 100px rgba(6, 182, 212, 0.25);
}

.cta h2 {
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.cta-button {
  background: white;
  color: #020617;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #22c55e;
  color: #031407;
  font-size: 30px;
  box-shadow: 0 20px 45px rgba(34, 197, 94, 0.35);
}

.footer {
  text-align: center;
  padding: 34px 20px;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes float {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-22px) scale(1.04);
  }
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-visual {
    min-height: auto;
  }

  .cards-3,
  .results {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .navbar {
    padding: 14px 20px;
  }

  .logo span {
    font-size: 16px;
  }

  .navbar .btn-whatsapp {
    display: none;
  }

  .hero,
  .section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
