.description-container {
  margin-top: 0px;
  margin-bottom: 10px;
}

/* Seta visível apenas no mobile */
.dropdown-button {
  display: none;
}

.story-content {
  /* No desktop: sempre visível */
  max-height: none;
  opacity: 1;
  text-align: left;
  font-size: 1.3em;
  line-height: 1.5;
  font-family: "WorkSans", sans-serif;
  padding-top: 10px;
}

/* No mobile: mostrar seta achatada e comportamento dropdown */
@media (max-width: 768px) {
  .dropdown-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px; /* Bordas arredondadas em vez de 50% */
    color: #fff;
    cursor: pointer;
    width: 60px; /* Largura maior para formato retangular */
    height: 30px; /* Altura adequada para retângulo */
    margin: 0 auto;
    font-size: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    /* Remove o transform: scaleY que causava o efeito de elipse */
  }

  .dropdown-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1); /* Scale normal sem distorção vertical */
  }

  .story-content {
    max-height: 1000px; /* Inicialmente expandido */
    opacity: 1; /* Inicialmente visível */
    transition: max-height 0.3s ease-out, opacity 0.3s ease;
    text-align: justify;
    font-size: 0.8em;
    line-height: 1.4;
    margin-top: 15px;
  }

  .story-content:not(.active) {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
  }
}
