body {
    font-family: "Oswald", sans-serif;
}

.poppins {
    font-family: "Poppins", sans-serif !important;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 0.375rem;
    background-color: #3ea31c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
    text-transform: uppercase;
}

.btn:hover {
    background-color: #2563eb;
    transform: scale(1.1);
}

.bg-custom {
    background: linear-gradient(to bottom, #143D53, #0F2B3A);
}

.swiper {
    width: 100%;
}

.swiper-slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); } /* metade porque duplicamos os slides */
}

.animate-marquee {
  display: flex;
  gap: 1rem;
  animation: marquee 17s linear infinite; /* 30s = ajuste de velocidade */
}

@media (max-width: 500px) {
    .animate-marquee {
      animation: marquee 10s linear infinite; /* 30s = ajuste de velocidade */
    }
}
