* {
  font-family: inter;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

.whatsapp-float:hover {
  background-color: #20ba58;
  box-shadow: 2px 8px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.whatsapp-text {
  background-color: #25d366;
  width: 250px;
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 2px 2px 3px #999;
  animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-widht: 768px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-text {
    font-size: 12px;
    padding: 8px 12px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

.fw-bold {
  font-weight: 800 !important;
}

.text-primary {
  color: #ffbd59 !important;
}

strong {
  font-weight: 800;
}

h2,
h5,
h6 {
  color: #ffbd59 !important;
  font-weight: 700;
}

.navbar {
  background-color: #ffbd59 !important;
}

.bg-primary {
  background-color: rgba(255, 189, 89, 0.3) !important;
  color: #1f1f1f !important;
}

.bg-primary i {
  font-size: 25px !important;
}

.btn-primary {
  background-color: #ffbd59 !important;
  border-color: #ffbd59 !important;
  color: black !important;
}

.btn-primary:hover {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
  color: #ffbd59 !important;
}

.btn-secondary {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
  color: white !important;
}

.btn-secondary:hover {
  color: #ffbd59 !important;
}

.btn-outline-primary {
  border: 3px solid !important;
  border-color: #ffbd59 !important;
  color: black !important;
}

.btn-outline-primary:hover {
  background-color: #1f1f1f !important;
  border-color: #1f1f1f !important;
  color: #ffbd59 !important;
}

#carouselExample .carousel-inner {
  max-height: 500px;
  overflow: hidden;
}

#carouselExample .carousel-item img {
  height: 500px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 768px) {
  #carouselExample .carousel-inner {
    max-height: 350px;
  }

  #carouselExample .carousel-item img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  #carouselExample .carousel-inner {
    max-height: 250px;
  }

  #carouselExample .carousel-item img {
    height: 250px;
  }
}

.card {
  border: 2px solid !important;
  border-radius: 30px !important;
  border-color: #ffbd59 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.form-control:focus {
  border-color: #ffbd59 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 189, 89, 0.5) !important;
}

.form-select:focus {
  border-color: #ffbd59 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 189, 89, 0.5) !important;
}
