@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Open+Sans:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 50%, #1a202c 100%);
}

.title-font {
    font-family: 'Playfair Display', serif;
}

.gradient-border {
    background: linear-gradient(135deg, #805ad5, #d69e2e);
    padding: 2px;
    border-radius: 0.75rem;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.live-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.video-card {
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(214, 158, 46, 0.5);
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.8;
    }
}

.cursor-grab {
    cursor: grab;
}

.cursor-grabbing {
    cursor: grabbing;
}

#carousel {
    user-select: none;
    -webkit-user-select: none;
}

#carousel img {
    pointer-events: none;
}

/* Melhoria nos botões de navegação */
.nav-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn:hover {
    background: linear-gradient(135deg, #805ad5, #d69e2e);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(214, 158, 46, 0.4);
    border-color: transparent;
}

.nav-btn:active {
    transform: scale(0.95);
}
