.navbar {
	  position: fixed;       /* fixa no topo */
	  top: 0;                /* gruda no topo da tela */
	  left: 0;
	  width: 100%;           /* ocupa toda a largura */
	  z-index: 1000;  
	  display: flex;
	  justify-content: space-between; /* logo à esquerda, links à direita */
	  align-items: center;
	  padding: 10px 100px;
	  background-color: #111;
	  box-shadow: 0 2px 5px rgba(0,0,0,0.5); /* sombra opcional */
	}

	.logo-link {
	  flex-shrink: 0;   /* evita encolher a logo */
	}

    .container-nav {
	  display: flex;
	  gap: 20px;
	}

    .logo {
	  max-width: 40px;  
	  height: auto;      
	  display: block; 
	  transition: transform 0.3s ease;
	}

	.logo:hover {
	  transform: scale(1.05); /* leve aumento no hover */
	  cursor: pointer;
	}
	
	.container-nav a {
	  color: white;
	  text-decoration: none;
	  font-weight: bold;
	}

	.container-nav a:hover {
	  color: #f2f2f2;
	}

    .nav-links {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    .nav-links li a {
      color: #fff;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 1px;
      transition: color 0.3s;
    }

    .nav-links li a:hover {
      color: #ff0000;
    }

    .menu-toggle {
	  display: none;
	  font-size: 28px;
	  background: none;
	  border: none;
	  color: white;
	  cursor: pointer;
	}
	
	.video-desktop {
      display: block;
    }

    .video-mobile {
      display: none;
    }

    @media (max-width: 768px) {
	  .navbar{
	    padding: 10px 50px;
	  }
	  
      .nav-links {
		flex-direction: column;
		gap: 1rem;
	  }
	  
	  .nav-links li a {
		font-size: 1.2rem;
		padding: 0.5rem 0;
		display: block;
	  }
	  
	  .container-nav {
		display: none;
		position: absolute;
		top: 60px;
		right: 0;
		width: 100%;
		background-color: #111;
		flex-direction: column;
		align-items: center;
		padding: 1rem 0;
		z-index: 999;
	  }
	  
	  .logo {
		max-width: 40px;
	  }

      .nav-links.show {
        display: flex;
      }
	  
	  .container-nav.show {
		display: flex;
	  }

      .menu-toggle {
		display: block;
		font-size: 28px;
		background: none;
		border: none;
		color: white;
		cursor: pointer;
		z-index: 1001;
	  }
	  
	  .section {
        padding: 2rem 1rem;
      }
	  
	  .swiper-button-next,
	  .swiper-button-prev {
		width: 25px;
		height: 25px;
		background: rgba(0, 0, 0, 0.15); /* Ainda mais transparente em mobile */
	  }
	  
	  .swiper-button-next::after,
	  .swiper-button-prev::after {
		font-size: 14px; /* Setas menores em mobile */
	  }
	  
	  .video-desktop {
        display: none;
      }

      .video-mobile {
        display: block;
      }
	  
	  .swiper-reels {
		height: 200px;
	  }

	  .swiper-reels .swiper-slide {
		width: 150px;
	  }
    }
	
	.swiper { 
      width: 100%; 
      height: 50vh; 
      max-height: 500px;
	  margin-top: 65px;
    }

    .swiper-slide img, .swiper-slide video { 
      width: 100%; 
      height: 100%; 
      object-fit: cover; 
    }
  
    /* Esconde completamente a barra de progresso padrão do Swiper */
    .swiper-pagination-progressbar {
      display: none !important;
    }

    /* Estilo da paginação customizada (opcional) */
    .swiper-pagination {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      width: 60%;
      max-width: 400px;
      height: 4px;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 2px;
      overflow: hidden;
    }

    .swiper-button-next,
	.swiper-button-prev {
	  color: rgba(255, 255, 255, 0.8); /* Branco semi-transparente */
	  transition: all 0.3s ease;
	  width: 30px; /* Tamanho reduzido para mobile */
	  height: 30px;
	  background: rgba(0, 0, 0, 0.2); /* Fundo mais transparente */
	  backdrop-filter: blur(2px);
	  border-radius: 50%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  opacity: 0.7; /* Transparência adicional */
	}

	/* Tamanho das setas */
	.swiper-button-next::after,
	.swiper-button-prev::after {
	  font-size: 18px; /* Tamanho reduzido */
	  font-weight: bold;
	}

	/* Efeito hover sutil */
	.swiper-button-next:hover,
	.swiper-button-prev:hover {
	  color: white;
	  background: rgba(192, 0, 0, 0.5); /* Vermelho mais transparente */
	  transform: scale(1.05);
	  opacity: 1; /* Mais visível no hover */
	}

    .swiper-button-next::after,
	  .swiper-button-prev::after {
		font-size: 14px; /* Setas menores em mobile */
	  }

    .swiper-button-next:hover::after {
      transform: translateX(3px);
    }

    .swiper-button-prev:hover::after {
      transform: translateX(-3px);
    }
	
    .custom-progress-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      z-index: 10;
      background: rgba(255, 255, 255, 0.1);
    }

    .progress-bar {
	  position: absolute;
	  top: 0;
	  left: 0;
	  height: 100%;
	  width: 0;
	  background: linear-gradient(to right, 
		#ff6b6b, 
		#c00000, 
		#8b0000);
	  border-radius: 3px;
	  box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
	  transition: width 50ms linear;
	}
	
	/* Swiper de Reels */
	.swiper-reels {
	  width: 100%;
	  height: 300px; /* altura adaptável, pode ajustar */
	  margin-top: 60px;
	  overflow: hidden;
	  position: relative;
	}

	.swiper-reels .swiper-wrapper {
	  transition-timing-function: linear !important; /* faz o movimento ser contínuo */
	}

	.swiper-reels .swiper-slide {
	  width: 200px; /* largura fixa de cada imagem no desktop */
	  height: 100%;
	  flex-shrink: 0;
	  border-radius: 8px;
	  overflow: hidden;
	  box-shadow: 0 0 10px rgba(0,0,0,0.5);
	}

	.swiper-reels .swiper-slide img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}
	
	.reels-img {
	  opacity: 0;
	  transition: opacity 0.5s ease;
	}

	.reels-img.loaded {
	  opacity: 1;
	}
	
	<!-- Pequeno CSS para o efeito de fadeInUp -->
	@keyframes fadeInUp {
	  0% { opacity: 0; transform: translateY(30px); }
	  100% { opacity: 1; transform: translateY(0); }
	}
	.animate-fadeInUp {
	  animation: fadeInUp 1s ease-out forwards;
	}