#app {
  padding: 100px 70px; 
  background:
    radial-gradient(ellipse at 70% 50%, rgba(45,63,181,0.25) 0%, transparent 60%),
    linear-gradient(160deg, #0f1535 0%, #141a40 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  height: 100vh;
}

.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; 
  align-items: center;
  max-width: 1100px;
  width: 100%;
}

.app-tag {
  display: inline-block;
  background: rgba(45, 63, 181, 0.3);
  border: 1px solid rgba(45, 63, 181, 0.5);
  color: #8fa4ff;
  font-size: 11.52px; 
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5.6px 14.4px; 
  border-radius: 20px;
  margin-bottom: 22.4px; 
}

.app-title {
  font-size: 41.6px; 
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 19.2px; 
}

.app-title span {
  color: #8fa4ff;
}

.app-desc {
  font-size: 15.52px; 
  line-height: 1.8;
  color: #9aa5cc;
  max-width: 420px;
  margin-bottom: 32px; 
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 11.2px; 
  margin-bottom: 35.2px; 
  list-style: none;
  padding: 0;
}

.app-features li {
  display: flex;
  align-items: center;
  gap: 11.2px; 
  color: #b8c4e8;
  font-size: 14.08px; 
}

.app-features li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #2d3fb5;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(45, 63, 181, 0.7);
}

.app-badges {
  display: flex;
  gap: 14.4px; 
  flex-wrap: wrap;
}

.app-badges a {
  display: inline-flex;
  align-items: center;
  gap: 8px; 
  padding: 11.2px 22.4px; 
  border-radius: 8px;
  font-size: 13.12px; 
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.app-badges a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.badge-ios {
background-color: grey;
border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.badge-android {
  background-color: grey;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.app-lancamento {
  display: flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  color: #fff;
  padding-top: 60px;
}

.app-lancamento span {
  color: #8fa4ff;
}

/* TELEMÓVEIS */
.app-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 22.4px; 
  padding-bottom: 16px; 
}

.app-phones img {
  width: 500px;
  transition: transform 0.3s ease;
}
html, body {
  height: 100%;
}
/* ═══════════════════════════════
   📱 MOBILE
═══════════════════════════════ */
@media (max-width: 768px) {

  #app {
    padding: 80px 24px;
    height: auto; /* remove os 100vh que causam corte */
  }

  .app-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .app-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .app-features {
    align-items: center;
  }

  .app-features li {
    justify-content: center;
  }

  .app-badges {
    justify-content: center;
  }

  .app-title {
    font-size: 30px;
  }

  .app-desc {
    font-size: 14px;
  }

  .app-lancamento {
    justify-content: center;
    padding-top: 30px;
  }

  .app-lancamento h2 {
    font-size: 20px;
  }

  /* Telefones */
  .app-phones img {
    width: 280px;
  }

}
/* ═══════════════════════════════
   💻 TABLET / LAPTOP
═══════════════════════════════ */
@media (min-width: 769px) and (max-width: 1200px) {

  #app {
    padding: 100px 40px;
  }

  .app-inner {
    gap: 50px;
  }

  .app-title {
    font-size: 36px;
  }

  .app-desc {
    font-size: 15px;
  }

  .app-phones img {
    width: 380px;
  }

}