body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f9f5f0;
  color: #333;
}
.hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  background-blend-mode: overlay;
}
.card-title {
  color: #2E7D32;
}
.btn-success {
  background-color: #4E342E;
  border-color: #4E342E;
}
.btn-outline-success {
  color: #4E342E;
  border-color: #4E342E;
}
.btn-outline-success:hover {
  background-color: #4E342E;
  color: #fff;
}
.product-img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.card {
  transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.overlay {
  z-index: 1;
}

.z-2 {
  z-index: 2;
  position: relative;
}
.text-cacao {
  font-family: 'Playfair Display', serif;
  color: #4E342E;
}

.nav-link {
  transition: all 0.2s ease-in-out;
}

.nav-link:hover {
  color: #2E7D32 !important;
  background-color: rgba(46, 125, 50, 0.05);
  border-radius: 4px;
}
.navbar-brand {
  gap: 0.5rem;
}

.navbar-brand img {
  display: block;
  object-fit: contain;
}

.navbar-nav .nav-link-lg {
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 50px;
  }

  .navbar-nav .nav-link-lg {
    font-size: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.nav-link.active {
  border-bottom: 2px solid #2e7d32;
  font-weight: bold;
}

.hero-logo {
  height: auto;
  max-height: 50vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: -0.5rem; 
  margin-top: -1rem; 
  display: block;
}
.hero-logo:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .hero-logo {
    max-height: 28vh;
    margin-bottom: -0.2rem;
    margin-top: -0.8rem;
  }
}

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p.lead {
    font-size: 1.5rem;
  }
.text-cacao {
  color: #4E342E;
}

.carousel-inner img {
  transition: transform 0.3s ease;
}

.carousel-inner img:hover {
  transform: scale(1.03);
  cursor: grab;
}

@media (max-width: 768px) {
  .carousel-inner img {
    height: 240px;
  }
}
.text-cacao {
  color: #4E342E;
}

.card-body i {
  transition: transform 0.3s ease-in-out;
}
.card-body:hover i {
  transform: scale(1.2);
}
.cta-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  padding: 0;
}

@media (max-width: 575.98px) {
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem; 
  }

  .cta-buttons a {
    width: 100%;
  }
}
