.fruit-comparison {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vh;
  height: 390px;
  margin-top: 20px;
  max-width: 100%;
  border-radius: 20px;
  padding: 20px;
  background-color: rgb(0 0 0 / 65%);
  animation: fadeIn 1.2s forwards;
  zoom: 90%;

  }

  .brand-name {
  font-family: 'Trajan Pro';
  font-size: 10px; /* Tamanho da fonte para "Velaire" */
 /* font-weight: bold; /* Peso da fonte */
  color: #93938d; /* Cor do texto */
  text-transform: uppercase;
}

.aromas-name {
font-family: 'chairman';
  font-size: 28px;
  font-weight: normal;
  color: #ffcc99;
}
  

  .fruit-item {
    display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: -110px;
  margin-left: -190px;
  margin-bottom: -5px;
  position: relative;
  animation: fadeIn 1s forwards;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;

  }

  .fruit-item:last-child {
    margin-bottom: 0;
  }

  .fruit-item:nth-child(1) .progress {
    width: 40%;
    background: linear-gradient(90deg, rgb(255, 204, 153, 15%) 0%, rgba(255, 204, 153) 100%);
  }

  .fruit-item:nth-child(2) .progress {
    width: 80%;
    background: linear-gradient(90deg, rgb(255, 204, 153, 15%) 0%, rgba(255, 204, 153) 100%);
  }

  .fruit-item:nth-child(3) .progress {
    width: 60%;
    background: linear-gradient(90deg, rgb(255, 204, 153, 15%) 0%, rgba(255, 204, 153) 100%);
  }

  .fruit-item:nth-child(4) .progress {
    width: 50%;
    background: linear-gradient(90deg, rgb(255, 204, 153, 15%) 0%, rgba(255, 204, 153) 100%);
  }

  .fruit-item:nth-child(5) .progress {
    width: 70%;
    background: linear-gradient(90deg, rgb(255, 204, 153, 15%) 0%, rgba(255, 204, 153) 100%);
  }

  .fruit-item:nth-child(6) .progress {
    width: 90%;
    background: linear-gradient(90deg, rgb(255, 204, 153, 15%) 0%, rgba(255, 204, 153) 100%);
  }

  .fruit-item:nth-child(7) .progress {
    width: 30%;
    background: linear-gradient(90deg, rgb(255, 204, 153, 15%) 0%, rgba(255, 204, 153) 100%);
  }

  .fruit-item:nth-child(8) .progress {
    width: 65%;
    background: linear-gradient(90deg, rgb(255, 204, 153, 15%) 0%, rgba(255, 204, 153) 100%);
  }

  .fruit-item:nth-child(9) .progress {
    width: 85%;
    background: linear-gradient(90deg, rgb(255, 204, 153, 15%) 0%, rgba(255, 204, 153) 100%);
  }

  .fruit-item:nth-child(10) .progress {
    width: 85%;
    background: linear-gradient(90deg, rgb(255, 204, 153, 15%) 0%, rgba(255, 204, 153) 100%);
  }

  .fruit-item:nth-child(11) .progress {
    width: 35%;
    background: linear-gradient(90deg, rgb(255, 204, 153, 15%) 0%, rgba(255, 204, 153) 100%);
  }

  .fruit-name {
    margin-left: 100px;
  font-size: 18px;
  max-width: 40%;
 /* width: 100%;*/
  font-weight: bold;
  color: #f1f1f1;
  text-align: left;
  letter-spacing: 3px;
  /* text-transform: uppercase; */
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: fadeIn 1.3s forwards;

  }

  .fruit-name:hover {
    color: rgb(255, 204, 153);
    /* Cor de fundo mais atrativa para hover */
    border-radius: 20px;
    transform: translateY(-2px);
    /* Efeito de elevação */
  }

  @keyframes glow {
    0% {
      box-shadow: 0 0 10px rgba(58, 123, 213, 0.4);
    }

    50% {
      box-shadow: 0 0 20px rgba(58, 123, 213, 0.8);
    }

    100% {
      box-shadow: 0 0 10px rgba(58, 123, 213, 0.4);
    }
  }

  .progress-bar {
    width: 60%;
  height: 20px;
  border-radius: 12px;
  background-color: #262626;
  position: relative;
  overflow: hidden;
  margin-left: 20px;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.4), 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  z-index: 1;
  }

  /* Efeito de brilho mais complexo */
  .progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    width: 100%;

    border-radius: 12px;
    background: linear-gradient(45deg, rgb(255 255 255 / 0%) 0%, #ffffff57 50%, rgb(255 255 255 / 4%) 100%);
    animation: enhanced-shine 10s infinite linear;
    z-index: 1;
  }

  @keyframes enhanced-shine {
    0% {
      left: -200%;
    }

    100% {
      left: 100%;
    }
  }

  /* Brilho ao passar o mouse */
  .progress-bar:hover::before {
    animation: none;
    background: rgba(0, 210, 255, 0.6);
    /* Brilho mais intenso no hover */
  }

  .progress-bar:hover .progress {
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.6);
    /* Adicionar brilho na barra também */
  }

  .progress {
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255, 204, 153, 0.15), rgba(255, 204, 153, 1));
    position: relative;
    z-index: 2;
    transition: width 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    /* Adicione box-shadow à transição */
    animation: fadeIn 1.2s forwards;
  }

  .percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;

    text-shadow: 0px 0px 2px rgb(4 3 10), 6px 6px 10px rgba(4, 1, 13, 1.1);
  }

  /* Efeito de brilho ao passar o mouse sobre a barra de progresso */
  .fruit-item:hover .progress-bar {
    background-color: #636161;
    box-shadow: 0 0 0 rgb(131 131 131 / 64%);
  }

  /* Estilo da aplicação */
  .app-fruta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 100vh;
    animation: fadeIn 1.3s forwards;
  }


  .aroma-notes-text {
    text-align: center;
  color: #efeeecca;
  margin-left: -510px;
  font-size: 10px;
  margin-top: 0px;

  }

  
  /* Contêiner dos rótulos de intensidade */
  .intensity-labels {
    position: relative;
    display: flex;
    bottom: 5px;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%;
    z-index: 5;
  }

  /* Rótulos "Fraco" e "Forte" */
  .label-weak,
  .label-strong {
    color: #f1f1f1;
    font-size: 9px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: rgba(255, 204, 153, 0.3);
    /* Fundo suave para os rótulos */
    padding: 1px 10px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    /* Adiciona sombra */
    transition: all 0.3s ease;

  }

  /* Centralização e posicionamento */
  .label-weak {
  position: absolute;
  left: 36.1%;
  transform: translateX(-50%);
  }

.label-strong {
position: absolute;
  left: 124%;
  transform: translateX(-50%);
  }


  /* Contêiner para as barras de progresso e o gráfico de intensidade */
  .intensity-wrapper {
    position: relative;
  width: 60%;
  margin-bottom: 15px;

  }


  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.62);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 204, 153);
    /* Brilho intenso */
    animation: fadeIn 0.3s forwards;
  }



  /* Animação suave ao aparecer */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Estilo visual melhorado para o título (h2) */
  .popup h2 {
    font-size: 2.2em;
    /* Aumentando o tamanho da fonte para mais destaque */
    margin-bottom: 15px;
    color: rgb(255 255 255);
    font-family: 'Helvetica', sans-serif;
    text-shadow: 1px 1px 5px rgb(0 0 0);
    letter-spacing: 1.5px;
    /*background: linear-gradient(293deg, #040300 0%, #ffcc99 100%);*/
    -webkit-text-fill-color: rgb(255 222 153);
    transition: transform 0.3s ease-in-out;
  }

  .popup-inner {
    background-color: rgb(200 182 164 / 85%);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    color: rgb(0 0 0);
    box-shadow: 0 0 8px rgb(43 43 43), 0 0 10px rgb(245 158 73);

  }

  .popup-inner h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .popup p {
    font-size: 1em;
    color: #000000;
    line-height: 1.5em;
  }

  .popup p strong {
    color: rgb(255 255 255);
    font-size: 1.1em;
    text-shadow: 1px 1px 3px rgb(0 0 0);
  }

  .popup-inner p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .close-popup {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
    /* Transição suave */
    box-shadow: 0 0 15px rgba(13, 13, 13, 0.7), 0 0 30px rgba(255, 255, 255, 0.4);
    /* Brilho intenso */
  }

  .close-popup:hover {
    background-color: rgb(60, 60, 60);
    color: rgba(255, 204, 153);

  }

  .label-weak {
position: absolute;
  left: 24.1%;
  transform: translateX(-50%);
}

  .aroma-notes-text {
    
  margin-top: -5px;
  margin-left: -63%;
  font-size: 9px;
  }

@media (min-width: 2000px) {
    .fruit-comparison {
      padding: 10px;
      margin: 145px;
      height: auto;
      zoom: 100%;

    }

    .label-strong {
      position: absolute;
      left: 111%;
      transform: translateX(-50%);

  }
  .label-weak {
  position: absolute;
  left: 18.1%;
  transform: translateX(-50%);
  }

  .aroma-notes-text {
  margin-top: -5px;
  margin-left: -61%;
  font-size: 9px;
  }
  
  }

/* Para telas menores que 768px */
@media (max-width: 768px) {
.fruit-comparison {
  display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 88%;
      /* height: 470px; */
      margin-top: 20px;
      max-width: 100%;
      border-radius: 20px;
      /* padding: 20px; */
      background-color: rgb(0 0 0 / 65%);
      animation: fadeIn 1.2s forwards;
}
.fruit-name {
font-size: 18px;
      max-width: 80%;
      /* width: 50%; */
      font-weight: bold;
      color: #f1f1f1;
      text-align: center;
      letter-spacing: 3px;
      /* text-transform: uppercase; */
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: fadeIn 1.3s forwards;
}

.intensity-wrapper {
  position: relative;
  width: 50%;
  margin-bottom: 15px;
}
.fruit-item {
  display: flex;
  justify-content: space-evenly;
  align-items: baseline;
  margin-right: -90px;
  margin-left: -150px;
  margin-bottom: -5px;
  position: relative;
  animation: fadeIn 1s forwards;
  flex-direction: row;
  flex-wrap: nowrap;
}
.aroma-notes-text {
margin-top: -5px;
      margin-left: -60%;
      font-size: 9px;
}

  .label-strong {
    position: absolute;
      left: 121%;
      transform: translateX(-50%);
  }
  .label-weak {
    position: absolute;
      left: 53.1%;
      transform: translateX(-50%);
  }


}
/* Para telas menores que 480px (smartphones) */
@media (max-width: 480px) {
.fruit-comparison {
  display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 90%;
      height: 460px;
      margin-top: -50px;
      max-width: 100%;
      border-radius: 20px;
      padding: 10px;
      background-color: rgb(0 0 0 / 65%);
      animation: fadeIn 1.2s forwards;
}
.fruit-name {
  font-size: 18px;
      max-width: 80%;
      width: 100%;
      font-weight: bold;
      color: #f1f1f1;
      text-align: center;
      letter-spacing: 3px;
      /* text-transform: uppercase; */
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: fadeIn 1.3s forwards;
}

.app-fruta {
  
  height: 90vh;

}

.label-weak {
  position: absolute;
  left: 54%;
  transform: translateX(-50%);
}

.intensity-wrapper {
  position: relative;
  width: 50%;
  margin-bottom: 15px;
}
.fruit-item {
  display: flex;
  justify-content: space-evenly;
  align-items: baseline;
  margin-right: -90px;
  margin-left: -150px;
  margin-bottom: -5px;
  position: relative;
  animation: fadeIn 1s forwards;
  flex-direction: row;
  flex-wrap: nowrap;
}

  .label-strong {
      position: absolute;
      left: 130%;
      transform: translateX(-50%);
  }

.aroma-notes-text {
      margin-top: -5px;
      margin-left: -30%;
      font-size: 9px;
  }
}



  @media (max-width: 450px) {
  .fruit-name {
    font-size: 18px;
      max-width: 80%;
      width: 86%;
      font-weight: bold;
      color: #f1f1f1;
      text-align: center;
      letter-spacing: 3px;
      /* text-transform: uppercase; */
      transition: background-color 0.3s ease, transform 0.3s ease;
      animation: fadeIn 1.3s forwards;
  }

  .fruit-comparison {
    display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 461px;
      margin-top: 0px;
      max-width: 90%;
      border-radius: 0px;
      padding: 10px;
      background-color: rgb(0 0 0 / 65%);
      animation: fadeIn 1.2s forwards;
  }
.label-weak {
position: absolute;
  left: 70%;
  transform: translateX(-50%);
}

  @media (max-width: 350px) {
    .fruit-comparison {
      display: none
    }

    }
  }