html {
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  background: #fafafa;
  color: #333;
  margin: 0;
  padding: 0;
}
.hero {
  position: relative;
  background: url(assets/banner.jpg) center/cover;
  height: 60vh;
}
.carousel-item img {
  height: 60vh;
  object-fit: cover;
  filter: brightness(65%);
}
.carousel-caption {
  top: 40%;
  transform: translateY(-50%);
}
.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 600;
}
.carousel-caption p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

#cta-contact {
  position: relative;
  background: url(assets/background-contact.jpeg) center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
  background-attachment: fixed;
}
#cta-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
#cta-contact .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
#cta-contact h2 {
  font-size: 2rem;
  margin: 0;
}
#cta-contact .btn-wpp-cta {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: 0.3s;
}
#cta-contact .btn-wpp-cta:hover {
  background: #1ebe5f;
}

#sobre {
  background: url(assets/background-history.jpg) center/cover fixed;
  color: #fff;
  position: relative;
}
#sobre::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
#sobre .content {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
  text-align: left;
  text-align-last: left;
}
#sobre h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
#sobre p {
  font-size: 1.1rem;
  max-width: 800px;
  line-height: 1.6;
  text-align: justify;
}

.products {
  padding: 4rem 0;
}
.products h2 {
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.extra-content {
  padding: 4rem 1rem;
  background: #fff;
  text-align: center;
}
.extra-content h2 {
  font-weight: 600;
  margin-bottom: 1rem;
}
.extra-content p {
  max-width: 700px;
  margin: auto;
}

.card-product {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.card-product img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.card-product:hover {
  transform: translateY(-8px);
}

.map-container {
  padding: 4rem 1rem;
  background-color: #f7f9fc;
  text-align: center;
}

.map-container h2 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-container p {
  color: #555;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.map-container .map-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.map-container .btn-directions {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease-in-out;
}

.map-container .btn-directions:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.4);
}

footer {
  background: #333;
  color: #ccc;
  padding: 3rem 0;
}
footer a {
  color: #aad4ff;
  text-decoration: none;
}
footer .social i {
  font-size: 1.5rem;
  margin-right: 12px;
}

@media (max-width: 768px) {
  
  .carousel-caption h1 {
    font-size: 1.7rem;
    font-weight: 600;
  }

  #cta-contact .container {
    flex-direction: column;
    text-align: center;
  }
  #cta-contact h2 {
    margin-bottom: 20px;
  }

  .container-mobile {
    padding: 0 2rem;
  }

  .map-container {
    padding: 2rem;
  }
}
