.banner {
  background: #2A2A2A;
  padding: 60px 20px;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.banner-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.banner-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
}

.banner-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
}

.banner-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
}

.banner-text p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ddd;
}

.highlight-orange {
  color: #c67b8f;
  font-weight: bold;
}

.highlight-bold {
  font-weight: bold;
  color: #c67b8f;
}

.banner-button {
  display: inline-block;
  padding: 16px 24px;
  background: linear-gradient(90deg, #642d3e, #7e4556);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.banner-button:hover {
  transform: scale(1.02);
}

/* Responsividade para telas menores que 768px (tablets e celulares) */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .banner-text h1 {
    font-size: 2rem;
  }

  .banner-text p {
    font-size: 0.95rem;
  }

  .banner-button {
    width: 100%;
    max-width: 300px;
  }
}
