body {
  background-color: #eae8e6;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide img {
  animation: zoomIn 8s linear infinite;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.active img {
  animation-name: zoomIn;
}

.owl-item:not(.active) img {
  animation-name: none;
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}

.logo-container {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.welcome-wrapper {
  display: flex;
}

.welcome-wrapper .welcome-icons {
  display: flex;
  flex-direction: column;
}

.welcome-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.welcome-text h2 {
  font-family: 'SantaCatalina';
  color: #3f291b;
}

.welcome-text p {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #3f291b;
}

.welcome-images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.welcome-img-large {
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.welcome-img-small {
  position: absolute;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.welcome-icons-left .icon-mushroom, .welcome-icons-left .icon-mushroom-small, .welcome-icons-left .icon-rosemary, .welcome-icons-right .icon-tomato {
  position: absolute;
}

.parallax-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('../../dados/layout/parallax.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.parallax-container .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(24, 15, 10, 0.77);
  z-index: 1;
}

.parallax-container .parallax-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.parallax-container .parallax-wrapper h2 {
  font-family: 'SantaCatalina';
  color: #f6f1d4;
}

.parallax-container .parallax-wrapper p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #f6f1d4;
}

.chef-image img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.chef-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  width: 100%;
}

.chef-title {
  font-family: 'SantaCatalina';
  color: #3f291b;
  text-align: center;
}

.chef-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #3f291b;
  text-align: center;
}

.history-section {
  display: flex;
  justify-content: space-between;
}

.history-item {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.history-item .history-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.history-item .history-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.overlay-gold {
  background: rgba(63, 41, 27, 0.67);
}

.overlay-dark {
  background: rgba(0, 0, 0, 0.7);
}

.history-item .history-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
}

.history-content h3 {
  font-family: 'SantaCatalina';
  color: #f6f1d4;
}

.history-content h3 span {
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.history-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 50px;
  color: #f6f1d4;
}

.history-content .btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #f6f1d4;
  background-color: transparent;
  border: 1px solid #f6f1d4;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: unset;
}

.history-content .btn:hover {
  background-color: #f6f1d4;
  color: #3f291b;
}

.testimonials-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.testimonials-images {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonials-images h2 {
  font-family: 'SantaCatalina';
  color: #3f291b;
  text-align: center;
}

.testimonials-images .testimonials-carousel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-sizing: border-box; 
}

.testimonials-images .testimonials-carousel .testimonial {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.testimonials-images .testimonials-carousel .testimonial .testimonial-image {
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  height: auto;
  object-fit: contain;
  display: block;
  align-self: flex-start;
}

.testimonials-images .testimonials-pagination {
  display: flex;
}

.testimonials-images .testimonials-pagination img {
  cursor: pointer;
  transition: opacity 0.3s;
}

.testimonials-icons-left .icon-leaf, .testimonials-icons-left .icon-garlic, .testimonials-icons-right .icon-cheese {
  position: absolute;
}