    html,
    body {
      position: relative;
      height: 100%;
    }
    .label {
			color: #fff;
			font-size: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 5px;
    }
    body {
      background: #eee;
      font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
      font-size: 14px;
      color: #000;
      margin: 0;
      padding: 0;
    }

    .swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff1f1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .category {

    	display: inline-block;
    	background-color: #000;
    	color: #fff;
    	font-size: 12px;
    	padding: 5px 10px;
    }
    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    	background-color: #000;
    }
    .swiper-button-next, .swiper-button-prev {
    	color: #000;
			top: 0;
			margin-top: 0;
			display: flex;
			height: 100dvh;
    }
    .title {

    	font-size: 18px;
    }
    .group-text {
    	padding-left: 45px;
    	padding-right: 45px;
    }
    .slide-number {
		position: absolute;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%);
		color: #060606;
		font-size: 18px;
		background-color: rgb(255 255 255);
		padding: 5px 10px;
		border-radius: 5px;
		z-index: 2;
		border: 1px solid #ccc;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 5px;
	}
	.swiper-button-next:after, .swiper-button-prev:after {
		font-size: 20px;
	}
	p {
		font-size: 12px;
		text-align: left;
	}
	.color-1 {
	    background-color: #f44336; /* Vermelho */
	}
	.color-2 {
	    background-color: #e91e63; /* Rosa */
	}
	.color-3 {
	    background-color: #9c27b0; /* Roxo */
	}
	.color-4 {
	    background-color: #2196f3; /* Azul */
	}
	.color-5 {
	    background-color: #009688; /* Teal */
	}
	.color-6 {
	    background-color: #4caf50; /* Verde */
	}
	.color-7 {
	    background-color: #8bc34a; /* Verde Claro */
	}
	.color-8 {
	    background-color: #ffeb3b; /* Amarelo */
	}
	.color-9 {
	    background-color: #ffc107; /* Âmbar */
	}
	.color-10 {
	    background-color: #ff9800; /* Laranja */
	}
	.color-11 {
	    background-color: #ff5722; /* Laranja Escuro */
	}
	.color-12 {
	    background-color: #795548; /* Marrom */
	}
	.color-13 {
	    background-color: #607d8b; /* Azul Acinzentado */
	}
	.color-14 {
	    background-color: #3f51b5; /* Azul Índigo */
	}
	.color-15 {
	    background-color: #9e9e9e; /* Cinza */
	}
	.color-16 {
	    background-color: #cddc39; /* Lima */
	}
	.color-17 {
	    background-color: #03a9f4; /* Azul Claro */
	}
	.color-18 {
	    background-color: #00bcd4; /* Azul Turquesa */
	}

	.swiper-slide.swiper-color {
		background-color: #006d63;
	}
	.swiper-slide.swiper-dark {
		background-color: #000;
	}
	.swiper-slide.swiper-dark .category {
		background-color: #fff;
		color: #000;
	}
	.swiper-slide.swiper-dark p {
		color: #fff;
	}
	.swiper-slide.swiper-dark .title {
		color: #fff;
	}
	.swiper-slide.swiper-color .category {
		background-color: #4caf50;
	}
	.swiper-slide.swiper-color p {
		color: #fff;
	    text-align: center;
	    border: 1px dashed #fff;
	    padding: 15px;
	}
	.swiper-slide.swiper-color .title {
		color: #fff;
	}
	.hamburger {
	  position: absolute;
	  top: 20px;
	  left: 20px;
	  width: 30px;
	  height: 25px;
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	  cursor: pointer;
	  z-index: 22;
	}

	.hamburger.color-active .bar {

		background-color: #fff;
	}

	.bar {
	  height: 4px;
	  width: 30px;
	  background-color: #333;
	  border-radius: 2px;
	}

	.menu {
	  position: fixed;
	  top: 0;
	  left: -250px; /* Menu inicialmente fora da tela */
	  height: 100%;
	  width: 250px;
	  background-color: #333;
	  transition: left 0.3s ease;
	  z-index: 2;
	}

	.menu ul {
	  list-style-type: none;
	  padding: 0;
	  margin: 0;
	}

	.menu li {
    padding: 10px;
    text-align: left;
    color: #333;
    border-bottom: 2px solid #333;
    padding-left: 50px;
    margin-bottom: 0;
	}

	.menu li a {
	  color: white;
	  text-decoration: none;
	  font-size: 18px;
	}

	.menu li a:hover {
	  background-color: #575757;
	}
	#menu {
	  position: fixed;
	  left: -250px;
	  top: 0;
	  width: 250px;
	  height: 100%;
	  background-color: #fff;
	  transition: left 0.3s ease; /* Adiciona a animação para a transição */
	  z-index: 22;
	  overflow: auto;
	  z-index: 3333;
	}

	/* Classe para abrir o menu */
	#menu.open {
	  left: 0;
	}
	/* Estilizando a lista ordenada */
ol {
	list-style: none;
	counter-reset: item;
	padding-left: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}

/* Estilo para os itens da lista */
ol li {
    position: relative; /* Necessário para usar o ::before */
    margin-bottom: 10px; /* Espaço entre os itens */
    padding-left: 40px; /* Espaçamento para as bolinhas */
}

/* Estilo da bolinha antes do número */
ol li::before {
    content: counter(item);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    color: #000;
    font-weight: bold;
    text-align: center;
    line-height: 25px;
    font-size: 12px;
    border: 2px solid #000;
}

ol li {
    counter-increment: item; /* Incrementa o contador para cada item */
}

ol li:nth-child(n+102) {

    background-color: #006d63;
    color: white;
}

ol li:nth-child(n+102):before {
    border: 2px solid transparent;
    background-color: #fff;
}
.progress-bar-container {
    position: fixed;
    bottom: 70px;
    width: 190px;
    padding: 10px;
    text-align: center;
    z-index: 2;
    right: 10px;
    left: 10px;
    margin: 0 auto;
    color: #fff;
}

.progress-bar-container strong {

	font-size: 11px;
	color: #FFEB3B;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 5px;
}

#progress-fill {
  height: 100%;
  width: 0%;
  background: #4caf50;
  transition: width 0.3s ease-in-out;
}

#menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999; /* Coloque abaixo do menu */
}

.menu.open + #menu-overlay {
    display: block;
}

.menu {
    z-index: 1000; /* Garanta que o menu está acima do overlay */
}