* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #020617;
  color: white;
}

.container-fluid {
  width: 90%;
  max-width: 1200px;
  margin: 0px auto;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* header {
  padding: 2px 0;
} */
/* HEADER ALINHADO */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

/* SOCIAL NO TOPO DIREITO */
.header-top .social-links {
  display: flex;
  gap: 15px;
  margin-right: 14em;
  padding-top: 2em;
}

/* ÍCONES */
.header-top .social-links a {
  color: #94a3b8;
  font-size: 18px;
  transition: 0.3s;
}

.header-top .social-links a:hover {
  color: #8b5cf6;
  transform: scale(1.2);
}

/* LOGO MAIOR */
.logo img {
  height: 180px; /* antes 50px */
}

/* 🔥 BANNER MELHORADO */
.top-banner {
  width: 100%;
  max-height: 420px; /* altura máxima */
  overflow: hidden;
  margin-bottom: 5em !important;
}

.top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* mantém proporção e corta excesso */
  display: block;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50vh;
}

.hero-text h1 {
  font-size: 52px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text h2 {
  font-size: 47px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  color: #94a3b8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn {
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  margin-right: 15px;
  cursor: pointer;
  font-weight: 600;
}
.playstore-btn img {
  width: 200px;
  max-width: 100%;
  transition: 0.3s;
}

.playstore-btn img:hover {
  transform: scale(1.05);
}
.primary {
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  color: white;
}

.secondary {
  background: #111827;
  color: white;
  border: 1px solid #334155;
}

.section {
  padding: 100px 0;
}

.section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #020617;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #1e293b;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  border: 1px solid #8b5cf6;
}

.card h3 {
  margin-bottom: 15px;
}

.cta {
  text-align: center;
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  padding: 80px 20px;
  border-radius: 20px;
}

footer {
  padding: 40px 70px;
  text-align: center;
  color: #94a3b8;
}
.social-links {
  display: flex;
  justify-content: end;
  gap: 20px;
  margin-right: 12em;
}

.social-links a {
  color: #94a3b8;
  font-size: 22px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #8b5cf6;
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .logo img {
    height: 55px;
  }

  .top-banner {
    max-height: 150px;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* SOCIAL NO TOPO DIREITO */
  .header-top .social-links {
    display: flex;
    gap: 15px;
    margin-right: 0;
    padding-top: 0;
  }
  .social-links {
    justify-content: center;
    margin-right: 0;
  }
}

/* HERO BANNER IGUAL AO DESIGN */
.hero-banner {
  background: radial-gradient(circle at top right, #0f172a, #020617 60%);
  padding: 60px 0;
}

/* LAYOUT */
.banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXTO */
.banner-text {
  max-width: 500px;
}

.banner-text h1 {
  font-size: 40px;
  line-height: 1.1;
}

.banner-text h1 span {
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-text h5 {
  margin-top: 30px;
  font-size: 20px;
  background: linear-gradient(90deg, #5cf6b8, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-text p {
  color: #94a3b8;
  margin: 20px 0;
  line-height: 1.6;
}

/* BOTÃO */
.banner-btn {
  background: linear-gradient(90deg, #8b5cf6, #06b6d4);
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 25px;
  transition: 0.3s;
}

.banner-btn:hover {
  transform: scale(1.05);
}

/* FEATURES ICONS */
.features-icons {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.icon-card {
  background: #020617;
  border: 1px solid #1e293b;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  width: 90px;
  transition: 0.3s;
}

.icon-card:hover {
  border-color: #8b5cf6;
  transform: translateY(-5px);
}

.icon-card i {
  font-size: 22px;
  color: #5cf6b8;
  margin-bottom: 8px;
}

/* IMAGEM */
.banner-image img {
  width: 650px;
  max-width: 100%;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .banner-text h1 {
    font-size: 28px;
  }

  .features-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}
