/* cores logo */
:root {
    --rosa: #fa60e2;
    --laranja: #feac2a;
    --verde: #4cefa0;
    --azul: #4cd6ef;
    --roxo: #cb73f9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-game {
    animation: floatGame 6s ease-in-out infinite;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}
.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.menu-fixed {
    background: white !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 0.75rem 0 !important;
}

.menu-fixed .logo-text {
    color: #1f2937 !important;
}

.menu-fixed .logo-icon {
    color: #7c3aed !important;
}

.typewriter::after {
    content: "|";
    display: inline-block;
    margin-left: 2px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}

.swiper-container {
    padding-bottom: 2rem;
}

.swiper-slide img {
    border-radius: 1rem;
    object-fit: cover;
}

.swiper-pagination {
    bottom: -10px !important;
}

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    transform: scale(1.3);
    background-color: #cb73f9 !important;
}

.scroll-hidden {
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE / Edge antigo */
}

.scroll-hidden::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
