/* Estilo básico */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
}

header p {
  font-size: 1.2rem;
  color: #7f8c8d;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

header .logo {
  max-width: 120px; /* Ajuste o tamanho máximo do logo */
  margin-right: 20px;
}

header .text-center {
  text-align: left;
}

.stores .card {
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.stores .card:hover {
  transform: scale(1.05);
}

.stores .card-body {
  padding: 20px;
}

.stores .card-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.stores .btn-link {
  font-size: 1.2rem;
  color: #3498db;
  text-decoration: none;
}

.stores .btn-link:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Botão do WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important; /* Remove underline por padrão */
}

.whatsapp-button i {
  font-size: 2rem; /* Ajuste o tamanho do ícone */
}

/* Rodapé */
footer h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

footer .social-icon {
  width: 30px;
  margin-right: 10px;
}

footer a:hover {
  color: #3498db;
}

/* Responsividade */
@media (max-width: 768px) {
  .whatsapp-button {
    padding: 12px;
  }

  .whatsapp-button i {
    font-size: 1.8rem; /* Reduz o tamanho do ícone em telas menores */
  }

  header {
    flex-direction: column;
    text-align: center;
  }

  header .logo {
    margin-bottom: 15px;
  }

  footer h3 {
    font-size: 1.5rem;
  }

  footer .social-icon {
    width: 25px;
  }

  .stores .card-title {
    font-size: 1.3rem;
  }

  .stores .btn-link {
    font-size: 1rem;
  }
}
