.image-wrapper {
  overflow: hidden;
}
.zoom-hover {
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.zoom-hover:hover {
  transform: scale(1.08);
  z-index: 2;
}
/*
.bw-img {
  filter: grayscale(100%);
  transition: filter 0.4s cubic-bezier(.4,0,.2,1);
}
*/
.zoom-hover:hover .bw-img {
  filter: none;
}

@media (min-width: 1024px) {
  .image-wrapper img {
    height: 600px;
  }
}

/* 

@media (max-width: 1023px) {
  .carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .carousel-slide {
    flex: 0 0 80%;
    scroll-snap-align: center;
    position: relative;
    min-width: 80%;
    max-width: 80%;
    box-sizing: border-box;
  }
  .carousel-slide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 1rem;
  }
  .carousel-slide span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 10;
    text-shadow: 0 2px 8px #000;
  }
}*/













/*
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
}
header {
  background: url('https://images.unsplash.com/photo-1610399214204-f2d78b1b8d68') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
}
header h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.btn {
  background-color: #ff6600;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}
*/
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.benefits, .categories {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.benefit, .category {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}
.category img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.visuals {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.visuals img {
  width: 45%;
  border-radius: 10px;
  max-width: 300px;
}
.testimonial {
  background: #e5f6ff;
  padding: 30px;
  border-left: 6px solid #00aaff;
  font-style: italic;
  margin: 0 auto;
  max-width: 800px;
  border-radius: 10px;
}
/*
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}
input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
*/
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}


