@font-face {
    font-family: 'rl_aqva';
    src: url('./fonts/rl_aqva.otf') format('opentype');
    font-weight: thin;
}

@font-face {
    font-family: 'rl_aqva_400';
    src: url('./fonts/RLAqva-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'rl_aqva_500';
    src: url('./fonts/RLAqva-Medium.ttf') format('truetype');
}


@font-face {
    font-family: 'rl_aqva_700';
    src: url('./fonts/RLAqva-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'rl_aqva_900';
    src: url('./fonts/RLAqva-Black.ttf') format('truetype');
}

body {
    font-family: 'inter', sans-serif;
}

a {
    cursor: pointer;
}

.rl_aqva {
    font-family: 'rl_aqva', sans-serif;
}

/* Scrollbar Hide */
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}

/* Hero Section Background */
.hero-bg {
    background: linear-gradient(to bottom, #0F172A, #1E293B, #0F172A);
    position: relative;
} 

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;


    border-radius: 30px;
    /* IMAGEM: Background paisagem noturna escura */
    background-image: url('./img/bg-hero.png');
    background-size: cover;
    background-position: top right;
    z-index: 0;
}

/* Snap Scroll */
.snap-x {
    scroll-snap-type: x mandatory;
}

.snap-start {
    scroll-snap-align: start;
}

.snap-mandatory {
    scroll-snap-type: x mandatory;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(168, 255, 111, 0.2);
}

/* Button Animations */
.btn-animate {
    transition: all 0.3s ease;
}

.btn-animate:hover {
    transform: scale(1.05);
}

.bg-stars {
    background: 
    url(./img/left-star.svg) no-repeat top 100px left 5%,
    url(./img/right-star.svg) no-repeat top 250px right 1%
    #0F172A;
}

/* Number Badge Styles */
.number-badge {
    background: #A8FF6F;
    color: #0F172A;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 14px;
}

.prize-currency {
    line-height: 90px !important;
}

@media (max-width: 1500px) {
    .bg-stars {
        background: #0F172A;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-bg::before {
        background-position: top left;
    }

    .bg-stars {
        background: #0F172A;
    }

    .prize-currency {
        line-height: 45px !important;
    }
}

@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-6xl {
        font-size: 3rem;
    }
    
    .text-7xl {
        font-size: 3.5rem;
    }
    
    .text-9xl {
        font-size: 4rem;
    }
}

/* Animation for fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #A8FF6F, #10BD57, #A8FF6F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Morphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Star Icon Animation */
.star-animate {
    animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

