html {
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background-color: #0c0202;
  text-decoration: solid;
}

.nav-link {
  color: #ffffff !important;
  font-size: 18px;
}

.nav-link:hover {
  color: #ff5733 !important;
}

/* Carousel */
.carousel img {
  height: 500px;
  object-fit: contain;
}

.carousel-caption {
  font-size: 0.8rem; /* Texto menor */
  color: #fff; /* Texto branco */
  padding: 5px 10px;
  border-radius: 5px;
}

.carousel-caption a {
  color: #ffc107; /* Dourado discreto */
  text-decoration: none;
}

.carousel-caption a:hover {
  text-decoration: underline;
}

.custom-arrow {
  background-color: #6c757d;
  border-radius: 50%;
  padding: 10px;
}

.custom-arrow:hover {
  background-color: #6c757d;
}

/* Seções */
section {
  padding: 60px 0;
}

.text-danger {
  color: #d9534f !important;
}

/* Cards */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card img {
  height: 200px;
  object-fit: cover;
}

.card-body {
  background-color: #f8f9fa;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
}

footer p {
  margin: 0;
}

#map iframe {
  border-radius: 8px;
}

.social-icons i {
  transition: transform 0.3s ease;
}

.social-icons a {
  text-decoration: none;
}

.social-icons .fa-instagram {
  color: #E1306C; /* Cor original do Instagram (roxo) */
}

.social-icons .fa-whatsapp {
  color: #25D366; /* Cor original do WhatsApp (verde) */
}

.social-icons a:hover .fa-instagram {
  color: #C13584; /* Cor mais escura do Instagram no hover */
}

.social-icons a:hover .fa-whatsapp {
  color: #128C7E; /* Cor mais escura do WhatsApp no hover */
}

.social-icons i:hover {
  transform: scale(1.2);
}

/* Estilo para a seção de benefícios */
.benefit-item {
  background-color: #f8f9fa; /* Fundo claro */
  border-radius: 50%;
  width: 230px; /* Tamanho maior do círculo */
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para destaque */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-link {
   text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.benefit-item i {
  color: #007bff; /* Cor do ícone */
  margin-bottom: 10px; /* Espaço abaixo do ícone */
}

.benefit-item h5 {
  font-size: 1.125rem; /* Tamanho do título maior */
  font-weight: bold;
  margin-top: 5px; /* Ajuste no espaço do título */
}

.benefit-item p {
  font-size: 0.875rem;
  color: #6c757d; /* Cor do texto */
  margin-top: 5px;
  padding: 0 10px; /* Espaço interno para texto mais longo */
}

.benefit-item:hover {
  transform: scale(1.1); /* Aumenta no hover */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); /* Mais sombra no hover */
}

.benefit-item i:hover {
  color: #0056b3; /* Mudança de cor do ícone no hover */
}

/* Estilo para espaçamento adicional em dispositivos menores */
@media (max-width: 768px) {
  .benefit-item {
    margin-bottom: 20px; /* Espaço extra entre círculos no mobile */
  }
}

.modal-content img {
  max-height: 400px;
  object-fit: cover;
}

.payment-method {
  text-align: center;
}

.payment-method img.pix-logo {
  width: 60%; /* Ajusta o tamanho da imagem */
  height: auto; /* Mantém a proporção */
  background: none; /* Remove qualquer fundo adicional */
  display: inline-block; /* Garante o alinhamento */
  margin: 0 auto; /* Centraliza dentro do container */
}

.payment-method p {
  font-weight: bold;
  margin-top: 10px;
  font-size: 1.1rem;
}

.promo-card {
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.promo-card:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.promo-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.promo-card p {
  font-size: 1rem;
}

.space {
  padding-top: 60px;
}

/* Estilo para a wpp button flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float i {
  font-size: 28px;
}