* {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;  
  font-style: normal;
  font-variation-settings:"slnt" 0;
}
html {
  scroll-behavior: smooth !important;
}


#bubble-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bubbleEmoji {
  position: absolute;
  bottom: -30px; /* Start below the container */
  font-size: 1.5rem; /* Smaller size */
  opacity: 1;
  animation: float 6s ease-out forwards; /* Adjusted animation */
}

.animation-pulse {
  /*box-shadow: 0 0 0 20px rgba(229,62,62, 0.5);
  transform: scale(0.8);*/
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
      transform: scale(0.9);
      box-shadow: 0 0 0 0 rgb(62, 229, 62, 0.4);
  }

  70% {
      transform: scale(1);
      box-shadow: 0 0 0 20px rgba(62, 229, 62, 0);
  }

  100% {
      transform: scale(0.9);
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
    opacity: 0.3;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-80vh); /* Increased height */
    opacity: 0;
  }
}

/* Slider container */
.slider-container {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

/* Slider track */
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #383838;
  outline: none;
  opacity: 1;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #32CD32;
  cursor: pointer;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #27FB6B;
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #27FB6B;
  cursor: pointer;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px #27FB6B;
}

/* Active part of the slider track */
.slider:before {
  content: '';
  position: absolute;
  height: 8px;
  background: #27FB6B;
  border-radius: 5px;
  top: 0;
  left: 0;
  z-index: 0;
}

.slider-container .slider-mark {
  position: absolute;
  top: 30px;
  text-align: center;
  font-size: 12px;
  color: #fff;
  width: 50px;
}

.slider-container .slider-tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}


.bg-gradient-black {
  background: rgb(27, 28, 28);
  background: linear-gradient(
    124deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(32, 33, 33, 1) 100%
  );
}

.bg-gradient-black-2 {
  background: rgb(27, 28, 28);
  background: linear-gradient(
    124deg,
    rgba(28, 28, 28, 1) 0%,
    rgba(32, 33, 33, 1) 100%
  );
}
.glow {
  box-shadow: 0 0 60px 10px rgba(39, 251, 107, 0.1);
}
.bg-gradient-green {
  background: rgb(39, 251, 107);
  background: linear-gradient(
    124deg,
    rgba(39, 251, 107, 1) 0%,
    rgba(31, 222, 92, 1) 100%
  );
}
.bubble {
  background-image: url('../img/bubble.svg');
  filter: blur(150px);
  z-index: 1;
  opacity: 0.4;
  width: 100%;
  height: 900px;
  background-size: 25%;
  background-position: 85% 5%;
  background-repeat: no-repeat;
  position: absolute;
  animation: move 10s infinite ease-in-out;
}

@media (max-width: 768px) {
  .bubble {
    background-image: url('../img/bubble.svg');
    filter: blur(150px);
    z-index: 1;
    opacity: 0.4;
    width: 100%;
    height: 500px;
    background-size: 100%;
    background-position: 100px 0;
    background-repeat: no-repeat;
    position: absolute;
    animation: move 10s infinite ease-in-out;
  }
}

.bubble-center {
  background-image: url('../img/bubble.svg');
  filter: blur(150px);
  z-index: 1;
  opacity: 0.4;
  width: 100%;
  height: 900px;
  background-size: 25%;
  background-position: 50% 5%;
  background-repeat: no-repeat;
  position: absolute;
  animation: move 10s infinite ease-in-out;
}
.gradient-white-border-top {
  position: relative;
  border-radius: 15px;
}
.gradient-white-border-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 90%;
  margin: 0 auto;
  height: 2px; /* Altura da borda */
  background: linear-gradient(to right, transparent, #27FB6B, transparent);
  border-radius: 15px 15px 0 0; /* Adicionar o mesmo border-radius ao pseudo-elemento */
}

.ig-border {
  background: #f09433; 
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
  background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.gradient-white-border-bottom::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1 !important;
  width: 50% !important;
  margin: 0 auto;
  height: 2px; /* Altura da borda */
  background: linear-gradient(to right, transparent, #27FB6B, transparent);
  border-radius: 0 0 15px 15px; /* Adicionar o mesmo border-radius ao pseudo-elemento */
}

@keyframes move {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.2;
  }
  25% {
    transform: translateY(-50px) translateX(10px);
    opacity: 0.4;
  }
  50% {
    transform: translateY(0) translateX(20px);
    opacity: 0.3;
  }
  75% {
    transform: translateY(50px) translateX(60px);
  }
}
.logo {
  background-image: url(../img/logo.svg);
  width: 150px;
  height: 30px;
  background-size: 80%;
  background-position: left;
  background-repeat: no-repeat;
}
.demo {
  background-image: url('../img/demo.svg');
  width: 640px;
  height: 420px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}


@media (max-width: 768px) {
  .demo {
    background-image: url('../img/demo.svg');
    width: 100%;
    height: 250px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Estilo para o scrollbar padrão */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, .80);
}

/* Estilo para o track (fundo do scrollbar) */
::-webkit-scrollbar-track {
  transition: background 0.3s;
  background: transparent;
}

/* Estilo para o thumb (parte móvel do scrollbar) */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .70);
  border-radius: 6px;
}

/* Estilo para o thumb quando está sendo hovered */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, .70);
}

/* Estilo para o track quando o mouse está sobre ele */
::-webkit-scrollbar-track:hover {
  background: transparent;
}

::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0);
}

.metallic-text {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), #fff, rgba(255, 255, 255, 0.6));
  background-size: 200% 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}
 /* Adicional: Estilo para transições suaves */
 .transition {
  transition: all 0.3s ease;
}
/* Menu inicialmente fora da tela, à direita */
.menu-hidden {
  transform: translateX(100%) !important;
}
/* Menu visível */
.menu-visible {
  transform: translateX(0) !important;
}
.carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 70px;
}

.carousel-track {
  display: flex;
  animation: scroll 10s linear infinite;
}

.carousel-track img {
  flex-shrink: 0;
  width: 160px;
  height: auto;
  object-fit: contain;
}

/* .carousel-item {
   flex-shrink: 0;
   width: 150px;
   margin: 0 10px;
 } */

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  pointer-events: none;
  z-index: 10;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #202121, rgba(32, 33, 33, 0));
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #202121, rgba(32, 33, 33, 0));
}

.grainy-effect {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: #131414;
  overflow: hidden;
}

.grainy-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBmaWxsPSIjMDAwMDAwIj4KPHBhdGggZD0iTTIyIDBIMjNWMUgyaDBWMkgwVjFIMlYxQzIuNTU1NTUgMi41NTU1NSAyLjAwMDAwIDAgMiAwSC0xVjIuOTI1NVYxSDJWNC4wNTAxTDQwIDQuMTk4NTFIMTBWN1YwSDIuOTI1NVY2QzMuNTU1NTUgMCA0IDAuNTU1NTUgNCAwSDEyVjFIMlYyQzEuNTU1NTUgMCAwLjU1NTU1NSA1IDAgNUg2VjFIM1Y0SC0xVjNIN0g4QzguNTU1NTUgNS4wNTU1NSA5IDUgOSAxVjNIMlYxSDdWMC4wNTAxODRWMC4xNEwzLjA0NzI2IDEuOTVMMCAxM0wxNi4xNDA1IDE2SDIuOTI1NUwxMC43NDQ4IDE2SDIuOTI1NUwxMS4zNDM5IDZIMi45MjU1TDExLjM0MzkgMi4wNTQyMUgyLjkyNTVMMTEuMzg1IDIuNTUzNDJIMi45MjU1TDExLjM4NSAyLjU1MzM5SC40OTE3OUwyLjkwOTk4IDEuMzUwMjJMMTIuODU1IDMuMDQ3MjZMMy4xMjA5MSAxMy4yNDA3SDIuOTI1NUwxMS4zNDM5IDMuNTYwNTFIMjIuOTI1NUwxMS4zNDM5IDMuNTYwNTFIMjEuMzU5N0wzIDEuMzUwMjJMNS45MjU1IDEuMzUwMjJIMTIuMzUwMTRMMTIuMjY1MiAxLjMwODExSDEyLjU2Mjg1TDMgMTYuMDc1SDEyLjA1NzNMMzIuNjQxNyAxNi4xNDA1TDIxLjU2NzcgMi4wNTQyMUgzOS4zOTc4SDMxLjE1QzI3Ljg4NjkgMTYuMDAwMCAyMy4xMDAxIDE2IDE4LjI1IDE2VjE2WiIgZmlsbD0iIzAwMDAwMCIvPgo8L3JlY3Q+Cjwvc3ZnPgo=');
  background-size: 300px 300px;
  opacity: 0.2; 
}
