/* --------- MOBILE --------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .page-title {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*ANIMAÇÃO DE FADE NO TITULO*/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

  .marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  margin: 20px 0;
}

.marquee-content {
  display: inline-block;
  animation: marquee 16s linear infinite;
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
}

@keyframes marquee {
  from { transform: translateX(60%); }
  to { transform: translateX(-100%); }
}
}