@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #7e294b;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.section.reverse {
  flex-direction: row-reverse;
}

.image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.text {
  flex: 1 1 55%;
}

.text h2 {
  font-size: 32px;
  color: #7e294b;
  margin-bottom: 16px;
  font-weight: 800;
}

.text p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #7e294b;
}

.text ul {
  margin-top: 10px;
  padding-left: 20px;
  color: #7e294b;
}

.text ul li {
  margin-bottom: 6px;
}

/* Responsivo */
@media (max-width: 768px) {
  .section,
  .section.reverse {
    flex-direction: column;
    align-items: center;
  }

  .text {
    text-align: left;
    width: 100%;
  }

  .image {
    width: 100%;
    margin-bottom: 20px;
  }

  .text h2 {
    font-size: 26px;
  }
}
