/* Reset básico para consistência entre navegadores */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #000000; /* Preto principal */
  color: #ffffff; /* Branco para o texto */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 4rem;
}

@media (min-width: 900px) {
  .container {
      flex-direction: row;
      justify-content: space-between;
  }
}

.content {
  text-align: center;
  max-width: 600px;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .content {
      text-align: left;
      margin-bottom: 0;
  }
}

.title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.cta-button {
  background-color: #00bf65; /* Verde vibrante */
  color: #000000;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #009952;
  transform: translateY(-3px);
}

.image-container {
  background-color: #222222;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}