* {
  box-sizing: border-box;
}

/* HERO */
.hero-interno {
  text-align: center;
  padding: 60px 20px 30px;
}

.hero-interno h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: #475C47;
}

.hero-interno p {
  color: #777;
}

/* LAYOUT */
.sobre-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 60px 80px;
}

/* TEXTO */
.sobre-texto {
  max-width: 500px;
}

.sobre-texto h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  color: #475C47;
}

.sobre-texto p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* CAROUSEL */
.carousel {
  position: relative;
  width: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel img {
  width: 400px;
  height: 500px;
  object-fit: cover;
}

/* BOTÕES */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

  .sobre-container {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .carousel {
    width: 100%;
  }

  .carousel img {
    width: 100%;
  }

}