.carousel-section {
  padding: 40px 0;
}

.carousel {
  position: relative;
  overflow: hidden;
  /*border-radius: 20px;*/
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  /*background: #fff;*/
}

.carousel-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* CONTENIDO */
.carousel-content {
  padding: 65px;
  text-align: center;
}

.carousel-title {
  /*font-family: var(--font-cursiva);*/
  font-size: 1.6rem;
  margin: 10px 0;
}

.carousel-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.carousel-link {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 25px;
  background: #c2a46d;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

/* BOTONES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.75);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  z-index: 10;
  color: #444;
}

.carousel-btn.prev {
  left: 1px;
}

.carousel-btn.next {
  right: 1px;
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}
