@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Boldonse&family=Cinzel:wght@400..900&family=Lemon&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Russo+One&display=swap');

body {
    color: #4fc3f7; 
    background-color: #121212; 
    margin: 0px;
    margin-bottom: 100px;
    font-family: 'Montserrat', sans-serif;
}

header {
    border-bottom: solid 2px #7c4dff;
    margin: 20px;
    font-size: 32px;
    color: #ffffff; /* Branco */
    text-align: center;
    padding-bottom: 10px;
    background-color: #1e1e1e; 
}

section {    
    padding-bottom: 80px;
    padding-top: 80px;
    background: #1e1e1e; /* Fundo escuro */
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #333;
}

h1 {
    color: #76ff03;
    font-size: 40px;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(118, 255, 3, 0.3);
}

p {
    font-size: 20px;
    margin: 10px 0;
    color: #b3e5fc;
}

.categoria {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.categoria-videos {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: #7c4dff #1e1e1e;
}

.categoria-videos::-webkit-scrollbar {
    height: 8px;
}

.categoria-videos::-webkit-scrollbar-track {
    background: #1e1e1e;
}

.categoria-videos::-webkit-scrollbar-thumb {
    background-color: #7c4dff;
    border-radius: 4px;
}

.categoria-videos iframe {
    min-width: 1230px;
    height: 692px;
    border: 2px solid #7c4dff;
    border-radius: 8px;
}

img {
    height: 200px;
    transition: all 0.3s ease;
}

.categoria-videos img {
    opacity: 0.7;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.categoria-videos img:hover {
    opacity: 1.0;
    border: 3px solid #76ff03;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(118, 255, 3, 0.3);
}

.categoria h2 {
    color: #7c4dff;
    font-size: 28px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #7c4dff;
}

.chamada-texto {
    margin-right: 1%;
    text-align: center;
    padding: 30px;
    background-color: #1e1e1e;
    color: #b3e5fc;
    max-width: 800px;
    border: 2px solid #7c4dff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(124, 77, 255, 0.2);
}

a {
    transition: all 0.3s ease;
}

a:hover {
    filter: brightness(1.2);
}

@media (max-width: 1300px) {
    .categoria-videos iframe {
        min-width: 90%;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .categoria-videos iframe {
        height: 300px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .chamada-texto {
        padding: 20px;
    }
}
