* {
  list-style: none;
  font-family: "Roboto Condensed", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(
      circle at center,
      rgba(46, 57, 78, 0.4) 30%,
      rgba(20, 25, 35, 0.4) 70%
    ),
    linear-gradient(135deg, #0e111a 0%, #090b10 100%);
  text-align: center;
  padding: 20px;
}

.header {
  max-width: 90%;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.content {
  max-width: 880px;
  margin: 50px auto;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.header h1 {
  font-size: 25px;
  font-weight: 600;
  color: #4ade80;
}

.subtitle {
  color: white;
  font-size: 40px;
  font-weight: 700;
}

.text1 {
  font-size: 18px;
  color: #dad8d8;
  line-height: 25px;
}

.img {
  width: 28rem;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  transition: transform 0.3s ease;
}

.img:hover {
  transform: scale(1.05);
}

.highlights {
  border: 1px solid #4ade80;
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 15px rgba(9, 247, 156, 0.1);
  display: flex;
  align-items: baseline;
  flex-direction: column;
  width: 830px;
  text-align: left;
  gap: 10px;
}

.highlights li {
  font-size: 18px;
  color: #dad8d8;
}

.highlights li strong {
  color: #4ade80;
}

.text {
  color: #4ade80;
  font-size: 20px;
  p {
    margin-bottom: 30px;
  }
}

.botao {
  display: inline-block;
  background: #22c55e;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(238, 155, 0, 0.1);

  span {
    margin-left: 5px;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.botao:hover {
  background: #45bb70;
}

.imagem-container img {
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.rodape {
  font-size: 14px;
  color: #64748b;
  margin-top: 0;
}

@media (max-width: 900px) {
  .header {
    font-size: 18px;
    gap: 30px;
    width: 300px;
  }

  .content {
    max-width: auto;
    gap: 50px;
  }

  .highlights {
    width: 100%;
  }

  .img {
    width: 90%;
  }
}

@media (max-width: 600px) {
  .content h1 {
    font-size: 22px;
    gap: 30px;
  }

  .subtitle {
    font-size: 30px;
  }

  .text1 {
    font-size: 16px;
    line-height: 22px;
  }

  .highlights li {
    font-size: 16px;
  }

  .text {
    font-size: 18px;
  }

  .botao {
    padding: 10px 18px;
    font-size: 16px;
  }

  .img {
    width: 90%;
  }

  .content img {
    max-width: 90%;
  }
}
