@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
  
  /* General reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 60px;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.sidebar img {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    cursor: pointer;
}

/* Main content */
.main-content {
    margin-left: 0px;
    padding: 0px;
}

/* Video carousel section */
.video-carousel {
    width: 100%;
    position: relative;
}

.swiper {
    width: 100%;
    height: 500px;
}

.swiper-slide {
    position: relative;
    transition: transform 0.8s ease, opacity 0.8s ease;
    transform-origin: center; /* Centraliza o efeito 3D */
    will-change: transform, opacity; /* Otimiza performance */
}

.swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video overlay controls */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-controls button {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.video-controls button:hover {
    background: #fff;
    color: #000;
}

.video-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 15px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}
.video-info b{
    color: rgb(111, 109, 109);
}

/* Fixed top bar on scroll */
.top-bar {
    position: fixed;
    top: -50px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4); /* Fundo preto translúcido */
    backdrop-filter: blur(15px); /* Aplica o blur */
    -webkit-backdrop-filter: blur(15px); 
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    transition: top 0.3s ease;
}

.top-bar.show {
    top: 0;
}

.main-content h1 {
    text-align: center;
    position: relative;
}

.top-bar b {
    color: #007AFF;
}

/* Carousel styles */
.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-title {
    font-size: 1.8rem;
    margin: 20px 0;
    color: #fff;
    text-align: center;
}

.carousel-items {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
h1 {
font-size: 24px;
margin: 20px 0;
color: #fff; /* Texto branco */
}

/* Container Principal */
.container {
max-width: 100%;
padding: 0 15px;
box-sizing: border-box;
}

/* Estilo dos Cards */
.cards {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 15px;
overflow-x: auto; /* Scroll horizontal em telas menores */
padding: 10px 0;
}

.card {
position: relative;
min-width: 250px; /* Ajuste para garantir largura mínima */
max-width: 250px;
background-color: transparent; /* Removendo o fundo dos cards */
border-radius: 10px;
overflow: hidden;
cursor: pointer;
flex-shrink: 0; /* Evitar que o card diminua */
}

.card img {
width: 100%;
height: auto;
display: block;
border-radius: 8px; /* Pequeno arredondamento para as bordas */
}

.card-content {
display: flex;
align-items: center;
justify-content: flex-start;
margin-top: 10px;
gap: 10px;
}

.card-content h2 {
margin: 0;
font-weight: bold;
font-size: 35px; /* Números maiores */
color: #f5c518; /* Cor amarela, similar à da imagem */
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.card-content span {
font-size: 16px; /* Tamanho do texto normal */
color: #fff; /* Texto branco */
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.card-content span{
font-size: 18px;
font-weight: bold;

}

/* Responsividade para Mobile */
@media screen and (max-width: 768px) {
.cards {
flex-wrap: nowrap;
justify-content: flex-start;
overflow-x: scroll; /* Scroll horizontal */
}

.card {
width: 80%; /* Ocupa boa parte da tela no mobile */
margin: 0 10px;
}

h1 {
font-size: 20px;
}
}

.carousel-indicators {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
overflow: hidden;
width: 50%; /* Ajuste a largura visível */
z-index: 10;
}

.indicator {
margin-bottom: 100px;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.4);
transition: all 0.3s ease;
cursor: pointer;
}

.indicator.active {
width: 6px;
height: 6px;
background-color: rgba(255, 255, 255, 1);
}

.indicator:not(.active) {
filter: blur(1px);
}

.indicator.hidden {
display: none;
}
/* Responsividade para telas menores */
@media (max-width: 768px) {
.swiper-container {
padding: 0 10px;  /* Adiciona espaçamento nas laterais para não colar nas bordas */
}
}
/* Container do carrossel */
.carousel-container {
position: relative;
overflow: hidden;
}

/* Container do carrossel */
.carousel-container {
position: relative;
overflow: hidden;
}

/* Container do carrossel */
.carousel-container {
position: relative;
overflow: hidden;
}

/* Container do carrossel */
.carousel-container {
position: relative;
overflow: hidden;
height: 100vh; /* Garante que o carrossel ocupe a altura da tela */
}

/* Estilo inicial para o título */
.carousel-title {
position: fixed; /* Fixo no topo */
top: 20px; /* Posição no topo */
left: 20px; /* Posição à esquerda */
font-size: 2rem;
color: white;
z-index: 10; /* Garante que o título fique acima de outros elementos */
background: transparent; /* Fundo transparente inicialmente */
padding: 10px 20px;
border-radius: 8px;
transition: all 0.3s ease; /* Transição suave */
}

/* Estilo quando o scroll for maior que um determinado ponto */
.carousel-title.scrolled {
position: absolute;
top: 0; /* Fica fixado no topo */
left: 50%; /* Centraliza horizontalmente */
transform: translateX(-50%); /* Ajusta para garantir que fique centrado */
font-size: 3rem; /* Aumenta o tamanho da fonte */
background: rgba(0, 0, 0, 0.8); /* Fundo escuro */
padding: 15px 30px;
width: 100%;

text-align: center; /* Centraliza o texto */
}

.carousel-wrapper {
display: flex;
flex-direction: column;
align-items: center;
overflow: hidden;
position: relative;
width: 100%;
max-width: 1200px;
margin: auto;
padding: 0 10px;
}

.slider {
display: flex;
transition: transform 0.5s ease-in-out;
width: 100%;
flex-wrap: nowrap;
justify-content: flex-start;
position: relative;
}

.slide-card {
flex: 0 0 calc(33.333% - 20px);
margin: 10px;
background-color: #1e1e1e;
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
overflow: hidden;
transition: transform 0.3s;
cursor: pointer;
}

.slide-card img {
width: 100%;
height: auto;
}

.card-info {
padding: 15px;
}

.card-info h3 {
margin: 0;
font-size: 1.5em;
}

.card-info p {
margin-top: 10px;
font-size: 1em;
color: #ccc;
}

.nav-buttons {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
transform: translateY(-50%);
z-index: 1;
padding: 0 10px;
display: none;
}

.nav-btn {
background-color: rgba(0, 0, 0, 0.5);
border: none;
color: white;
padding: 10px;
cursor: pointer;
border-radius: 50%;
transition: background-color 0.3s;
}

.nav-btn:hover {
background-color: rgba(255, 255, 255, 0.7);
color: black;
}

@media (min-width: 768px) {
.slider {
flex-wrap: wrap;
justify-content: space-between;
}

.slide-card {
flex: 0 0 calc(33.333% - 20px);
}

.nav-buttons {
display: none;
}
}

@media (max-width: 767px) {
.slider {
justify-content: flex-start;
}

.slide-card {
flex: 0 0 90%;
margin: 10px;
}

.nav-buttons {
display: flex;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1000;
}

.nav-btn {
display: block;
font-size: 24px;
line-height: 1;
}

#prev-button {
margin-right: 20px;
}

#next-button {
margin-left: 20px;
}
}
  /* Loader */
  .background-fade {
    position: fixed; /* Manter o loader fixo sobre a página */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,1) 100%, rgba(0,0,0,1) 100%);
    animation: fadeIn 1.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Manter o loader sobre o conteúdo */
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /* Logo container centralizado */
  .logo-container {
    text-align: center;
    animation: zoomIn 2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  @keyframes zoomIn {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: #e50914;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.8);
  }

  /* Circular loading spinner */
  .spinner {
    margin-top: 20px;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(229, 9, 20, 0.3);
    border-top: 5px solid #e50914;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /* Ajustes para telas menores */
  @media (max-width: 600px) {
    .logo {
      font-size: 4rem; /* Ajuste no tamanho da logo para telas menores */
    }
    .spinner {
      width: 40px;
      height: 40px; /* Ajuste no tamanho do spinner */
    }
  }
  
    /* Footer Style - Dark Mode */
    .footer {
        background-color: #1a1a1a; /* Fundo escuro */
        color: #e1e1e1; /* Texto claro */
        text-align: center;
        padding: 40px 20px;
        position: relative;
        margin-top: auto; /* Garantir que o footer fique no final da página */
        box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);
      }
  
      .footer h3 {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-weight: bold;
        font-size: 2rem;
        color: #e1e1e1;
        margin-bottom: 20px;
      }
  
      .social-icons {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-bottom: 20px;
      }
  
      .social-icons a {
        font-size: 2rem;
        color: #e1e1e1;
        text-decoration: none;
        transition: color 0.3s ease, transform 0.3s ease;
      }
  
      .social-icons a:hover {
        color: #0073e6; /* Cor de destaque no hover */
        transform: scale(1.1); /* Efeito de zoom ao passar o mouse */
      }
  
      .support-btn {
        display: inline-block;
        background-color: #0073e6; /* Cor de fundo azul */
        color: white;
        padding: 15px 30px;
        border-radius: 30px;
        font-size: 1.2rem;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 115, 230, 0.2);
      }
  
      .support-btn:hover {
        background-color: #005bb5;
        transform: scale(1.05);
      }
  
      .support-btn i {
        margin-right: 10px;
      }
  
      /* Responsividade */
      @media (max-width: 600px) {
        .footer {
          padding: 30px 10px;
        }
  
        .footer h3 {
          font-size: 1.5rem;
        }
  
        .social-icons a {
          font-size: 1.5rem;
        }
  
        .support-btn {
          padding: 12px 20px;
          font-size: 1rem;
        }
      }

      