body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

ul {
  list-style-type: none;
  width: 100%;
}

.header {
  margin: 0;
  padding: 0;
  position: fixed;
  background-color: #007bff;
  color: #fff;
}

/* Animações do Menu */
.menu-animado .nav-link {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.menu-animado .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #007BFF;
  /* Azul Bootstrap */
  transition: all 1s ease;
  transform: translateX(-50%);
}

.menu-animado .nav-link:hover {
  color: #007BFF;
  /* Cor ao passar o mouse */
}

.menu-animado .nav-link:hover::after {
  width: 100%;
}

.menu-animado li {
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeInMenu 0.6s ease forwards;
}

.menu-animado li:nth-child(1) {
  animation-delay: 0.1s;
}

.menu-animado li:nth-child(2) {
  animation-delay: 0.2s;
}

.menu-animado li:nth-child(3) {
  animation-delay: 0.3s;
}

.navbar-collapse.collapse {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: top right;
}

.navbar-collapse.collapsing {
  transform: scale(1.05);
  opacity: 0.5;
}

.navbar-collapse.show {
  transform: scale(1);
  opacity: 1;
}

.navbar-nav .nav-link {
  font-weight: 500;
}

@keyframes fadeInMenu {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fim Animações do Menu */

.navbar-nav {
  font-size: x-large;
  font-weight: bold;
}

.image-logo {
  height: 50px;
  width: auto;
  margin: 5px;
  padding: 5px;
}

.card-info {
  background-color: #f0f8ff;
  border: none;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  align-items: center;
}

.btn-download {
  background-color: #007bff;
  color: white;
  min-width: 160px;
  width: auto;
  padding: 10px 20px;
}

.btn-download:hover {
  background-color: #0056b3;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  /* verde WhatsApp */
  color: white !important;
  /* ícone branco */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  z-index: 9999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float i {
  font-size: 28px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

.d-block {
  height: 650px;
  max-height: 700px;
}

.button-more {
  font-weight: bold;
  background-color: #0d6efd;
  color: #fff;
  border: none;
  padding: 8px 16px;
  margin-top: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button-more:hover {
  background-color: #0b5ed7;
}

@media (max-width: 575.98px) {
  .whatsapp-float {
    padding: 8px;
    font-size: 1.5rem;
  }
}