body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

.zoom-logo {
  animation: zoomPulse 6s ease-in-out infinite;
  transform-origin: center;
}

@keyframes zoomPulse {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.5);
  }
}

header {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #020617;
}

.logo {
  height: 40px;
  margin-right: 1rem;
}

nav a {
  color: #93c5fd;
  margin-right: 1rem;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
}

.hero-logo {
  width: 180px;
  margin-bottom: 1rem;
}

.btn {
  background: #22c55e;
  color: #020617;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.card {
  background: #020617;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}

.problema,
.funcionalidades,
.padrao,
.mascote,
.cta {
  padding: 3rem 2rem;
}

.mascote {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.mascote img {
  width: 200px;
}

.mascote__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
}

.mascote__wrapper h2 {
  margin: 0;
}

.mascote__content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.obs {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.cta {
  text-align: center;
  background: #020617;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: rgba(2,6,23,0.9);
  border-radius: 18px;
  padding: 2rem;
  cursor: pointer;
  transition: all .3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,197,94,0.5);
}

.feature-card h3 {
  margin-bottom: .5rem;
  color: #e5e7eb;
}

.feature-card p {
  color: #94a3b8;
  font-size: .95rem;
}

.preview {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.phone {
  width: 260px;
  padding: 14px;
  border-radius: 36px;
  background: linear-gradient(180deg, #020617, #020617);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  border: 2px solid rgba(255,255,255,0.08);
}

.phone img {
  width: 100%;
  border-radius: 24px;
  transition: opacity .3s ease, transform .3s ease;
}
img {
  max-width: 100%;
  height: auto;
}

section {
  padding: 3rem 1.5rem;
}
@media (max-width: 768px) {

  header {
    flex-direction: column;
    gap: 1rem;
  }

  nav {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-logo {
    width: 150px;
  }

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

  .preview {
    margin-top: 2rem;
    display: none;
  }

  .preview.preview--visible {
    display: flex;
  }

  .phone {
    width: 220px;
  }

  .sobri {
    flex-direction: column;
    text-align: center;
  }

  .sobri img {
    width: 180px;
  }

  .mascote__wrapper {
    align-items: center;
    text-align: center;
  }

  .mascote__content {
    flex-direction: column;
    align-items: center;
  }

  .mascote__content img {
    margin-bottom: 1.5rem;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 12px 26px;
  }
  
}


footer {
  text-align: center;
  padding: 1rem;
  background: #020617;
}

