


* {
  font-family: 'Nunito Sans', sans-serif;
}
.card-title {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
}

.container {
  font-family: "Nunito Sans", sans-serif;
  overflow-x: hidden;
  
}
.cover {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.cover video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(50%);
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.content h1 {
  color: var(--Colors-Gray-1, #FFF);
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -1.44px;
}

.content h1 span {
  color: #96C22C;
}

.content p {
  color: var(--Colors-Gray-2, #E4E9E9);
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.search-bar input[type="text"] {
  padding: 15px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 25px ;
  outline: none;
  width: 550px;
  margin:5px;
  height: 50px;

}

.search-bar button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 70px;
  height: 50px;
  background-color: #96C22C;
  border: none;
  border-radius: 28px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-bar button:hover {
  background-color:#8ebd20;
}

.search-bar button i {
  font-size: 20px;
}

.info-box {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 600px;
  margin: 20px auto 0;
  position: relative;
}

.info-box img {
  width: 70px;
  height: 70px;
  border-radius: 5%;
}

.info-box div {
  margin-left: 15px;
  flex: 1;
}

.info-box h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.info-box p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: #555;
}

.info-box select {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  color: #333;
  cursor: pointer;
  outline: none;
}

.info-box select:hover {
  background-color: #e6e6e6;
}

.carousel-ads {
  display: flex;
  padding: 120px 0px 80px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  align-self: stretch;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.carousel-inner img {
  object-fit: cover;
  height: 400px;
  border-radius: 20px;
}

/* Ajustes para as setas */

.carousel-control-prev, .carousel-control-next {
  position: relative;
  top: 90%;
  left: 10%; /* Ajusta a posição à esquerda */
  transform: translateX(0); /* Remove o deslocamento central */
  z-index: 10;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  opacity: 100%;

  
}

.carousel-control-prev-icon{
  opacity: 100%;
  color: #fff;
  background-color:#E4E9E9;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.carousel-control-next-icon {
  opacity: 100%;
  color: #fff;
  background-color: #96C22C;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.carousel-control-prev-icon:hover {
  background-color: #E4E9E9;
  transition: background-color 0.3s ease;

}

.carousel-control-next-icon:hover {
  background-color:#98d30e;
  transition: background-color 0.3s ease;

}
 /* Estilo para posicionar o ícone no canto inferior direito */
 .whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
.whatsapp-icon img {
  width: 60px;
  height: auto;
  cursor: pointer;
}