* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #97cb3b;
  color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  transition: background 0.5s ease;
  padding: 20px;
}

/* Container principal */
.container {
  width: 100%;
  max-width: 1100px;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px;
  gap: 40px;
}

/* Texto */
.text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  width: 160px;
  margin-bottom: 25px;
}

.text-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #4d6d1c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.text-content .subtitle {
  color: #6b8040;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.text-content .desc {
  color: #8fa06a;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

button {
  background-color: #7fb52c;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(127, 181, 44, 0.4);
}

button:hover {
  background-color: #6aa427;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(106, 164, 39, 0.5);
}

/* Imagem */
.image-content {
  flex: 1;
  text-align: right;
}

.image-content img {
  width: 100%;
  max-width: 480px;
  height: auto;
  opacity: 0.95;
}

/* ----------------------------- */
/* RESPONSIVIDADE */
/* ----------------------------- */

/* Tablets (até 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 50px 40px;
    gap: 30px;
  }

  .text-content h1 {
    font-size: 2.4rem;
  }

  .image-content img {
    max-width: 380px;
  }
}

/* Celulares (até 768px) */
@media (max-width: 768px) {
  body {
    padding: 30px 15px;
  }

  .container {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
    gap: 20px;
  }

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

  .logo {
    margin: 0 auto 20px auto;
    width: 140px;
  }

  .text-content h1 {
    font-size: 2rem;
  }

  .text-content .subtitle,
  .text-content .desc {
    font-size: 0.95rem;
  }

  button {
    padding: 12px 30px;
    font-size: 0.95rem;
  }

  .image-content {
    text-align: center;
    margin-top: 30px;
  }

  .image-content img {
    max-width: 320px;
  }
}

/* Celulares pequenos (até 480px) */
@media (max-width: 480px) {
  .container {
    padding: 30px 20px;
  }

  .text-content h1 {
    font-size: 1.8rem;
  }

  .text-content .desc {
    font-size: 0.9rem;
  }

  .image-content img {
    max-width: 260px;
  }

  button {
    width: 100%;
  }
}
