body {
  display: flex;
  flex-direction: row;
  margin: 0;
  font-family: Arial, sans-serif;
  overflow: auto;
  justify-content: center;
}

#sidebar {
  background-color: #893FBF;
  color: white;
  width: 250px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: width 0.3s ease;
  flex-shrink: 0;
  z-index: 0;
}

#sidebar.recolhido {
  width: 50px;
  padding: 5px;
  z-index: 999;
}

#sidebar h2, #sidebar h3, #sidebar button, #sidebar p, #conversations-list {
  transition: opacity 0.3s ease;
}

#sidebar.recolhido h2, #sidebar.recolhido h3, #sidebar.recolhido button, #sidebar.recolhido p, #sidebar.recolhido #conversations-list{
  opacity: 0;
  pointer-events: none;
}

#sidebar.recolhido .history {
  display: none;
}

#main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 20px;
}

.question-list button {
  width: 100%;
  text-align: left;
  margin-bottom: 5px;
  font-size: 13px;
  padding: 5px;
}

.history {
  padding: 0px 0;
  max-height: 100%;
  overflow-y: auto;
  font-size: 16px;
}

.history::-webkit-scrollbar {
  width: 6px;
}

.history::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 3px;
}

.history::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.delete-btn {
  float: right;            /* Alinha o botão à direita */
  background: none;        /* Remove o fundo */
  color: white;            /* Define a cor do texto como branca */
  font-weight: bold;       /* Define o texto em negrito */
  border: none;            /* Remove a borda */
  cursor: pointer;         /* Muda o cursor para indicar que é clicável */
  padding: 0;              /* Remove o padding para manter o botão discreto */
}

.delete-btn:hover {
  color: red;              /* Altera a cor para vermelho ao passar o mouse */
}

#conversations-list {
  font-size: 14px;
  background-color: #6a1b9a;  /* Cor de fundo */
  padding: 5px;
  margin: 5px 0;
  border-radius: 8px;
  cursor: pointer;         /* Muda o cursor para indicar que é clicável */
  text-align: left;
  transition: background-color 0.3s ease;
}

/* Personalização dos links dentro do histórico */
#conversations-list a {
  font-size: 13px;
  color: #ffffff;  /* Cor branca para os links */
  text-decoration: none;  /* Remove o sublinhado dos links */
}

#conversations-list a:hover {
  color: #00E280;  /* Verde ao passar o mouse */
}

#chat-box {
  flex-grow: 1;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#chat-box::-webkit-scrollbar {
  width: 8px;
}

#chat-box::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 3px;
}

#chat-box::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.user-message {
  text-align: right;
  margin: 10px 0;
}

.user-message p {
  display: inline-block;
  background-color: #dcf8c6;
  padding: 10px;
  border-radius: 15px;
  max-width: 80%;
}

.assistant-message {
  text-align: start;
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.resposta-formatada {
  background-color: #f2f2f2;
  color: #000;
  padding: 15px 20px;
  border-radius: 12px;
  margin: 10px 0;
  max-width: 90%;
  line-height: 1.5;
}

.resposta-formatada p {
  margin: 8px 0;
}

.resposta-formatada strong {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.resposta-formatada hr {
  margin: 12px 0;
}


.assistant-message p {
  display: inline-block;
  background-color: #e1e1e1;
  padding: 10px;
  border-radius: 15px;
  max-width: 80%;
  white-space: pre-wrap;
}

#user-input {
  margin-top: 10px;
  margin-bottom: 10px;
  resize: none;
  overflow: hidden;
}

.btn-enviar {
  background-color: #00E280;
  color: white;
  font-weight: bold;
  border: none;
  margin-top: 10px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-enviar:hover {
  background-color: #5EB73D;
  color: white;
}

#logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

#logochat {
  width: 40px;
  height: auto;
  margin-right: 10px;
  transition: all 0.3s ease;
}

#vix-name {
  font-size: 13px;
  transition: opacity 0.3s ease;
}

#sidebar.recolhido #vix-name {
  opacity: 0;
}

#sidebar.recolhido #logo {
  margin: 0 auto;
}

#toggle-sidebar {
  background-color: #893FBF;
  color: #ffffff;
  border: none;
  border-radius: 15px;
  position: fixed;
  top: 10px;
  left: 235px;
  cursor: pointer;
  transition: left 0.3s ease;
  z-index: 999;
}

#sidebar.recolhido + #toggle-sidebar {
  left: 35px;
}

#chats-title {
  font-size: 18px;
}

#historico-title {
  font-size: 18px;
  padding-top: 20px;
}

@media (max-width: 768px) {
  #sidebar {
    width: 150px;
    padding: 5px;
  }

  #sidebar.recolhido {
    width: 0px;
    padding: 0px;
  }

  #sidebar.recolhido h2, #sidebar.recolhido h3, #sidebar.recolhido button, #sidebar.recolhido p, #sidebar.recolhido #conversations-list, #sidebar.recolhido #logo {
    opacity: 0;
    pointer-events: none;
  }

  #toggle-sidebar {
    left: 140px;
    font-size: 20px;
  }

  #sidebar.recolhido + #toggle-sidebar {
    left: 10px;
  }

  #main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding: 5px;
  }

  #chats-title, #historico-title {
    font-size: 16px;
  }

  .question-list button {
    font-size: 12px;
    padding: 5px;
  }

  #chat-box {
    padding: 0px;
  }

  #user-input {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .btn-enviar {
    margin-top: 5px;
    font-weight: bold;
  }
}



#notlog {
  background: linear-gradient(0.50turn,#6a0dad,#7a0fc7, #6a0dad);
  border-bottom: solid 2px #9132c0;
  color: white;
  height: 65px;
  flex-wrap: wrap;
  position: fixed;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  z-index: 999;
}
#img-vix-inicio{
  height: 55px;
  width: 55px;
  margin-bottom: 2px;
}
.links{
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  margin: 0px 20px;
  position: relative;
  scroll-behavior: smooth;
}
.links:hover{
  color: #00E280;
}
.links.ativo {
  color: #00E280; /* verde ou qualquer cor */
  font-weight: bold;
}
.links::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #00E280;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.links.ativo::after {
  transform: scaleX(1);
}


.container {
  height: 100vh;
}
.produto img {
  width: 100%;
  border-radius: 5px;
}

.produto h3 {
  margin-top: 10px;
}

.logout-btn {
  background-color: red;
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.logout-btn:hover {
  background-color: darkred;
}
.assinar{
  background-color: #4B0082;
  color: white;
  height: 50px;
  width: 100px;
  cursor: pointer;
}

#inicio-container{
  display: flex;
  flex-direction: column;
  width: 100%;
  align-content: center;
  height: 100%;
}
#chat-container{
  display: flex;
  flex-direction: row;
  height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
  width: 100%;
}
#produtos{
  display: flex;
  flex-direction: column;
  align-items: center;
}
#texto{
  color: black;
}
#texto-span{
  color: white;
  font-size: 20px;
}
#nao-logado-container{
  height: 100%;
  width: 100%;
  /* background: linear-gradient(0.50turn,#6a0dad,#69248b, #6a0dad)
  ; */
}

#sem-assinatura-container{
  height: 100%;
  width: 100%;
}
.produto{
  background-color: red;
  height: 200px;
  width: 200px;
}
.produto > button {
  height: 100%;
  width: 100px;
}
#link-sair{
  text-decoration: none;
  color: black;
}
.btn-acoes{
  background-color: white;
  text-decoration: none;
  height: 30px;
  border: none;
}
#log{
  background-color: #4B0082;
  position: relative;
  padding: 10px;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
#perfil{
  text-decoration: none;
  font-size: 35px;
  color: white;
}
#action{
  height: 100%;
  display: flex;
  position: relative;
  flex-direction: column-reverse;
}
#ancora{
  width: 1000px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#cont-nav{
  display: flex;
}
#cont-links{
  display: flex;
  margin-right: -120px;
}
.vix-texto{
  color: #00E280;
}
.profile-container {
    position: relative;
    display: inline-block;
}

/* BOTÃO DO PERFIL */
#perfil {
    color: white;
    text-decoration: none;
    font-size: 30px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.profile-menu {
    display: none;
    position: absolute;
    right: -120%;
    top: 100%; 
    background-color: #6a1b9a;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 10;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}

.profile-menu a {
    color: white;
    padding: 8px 5px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #21102e;
}
.profile-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.profile-menu a:hover {
    background-color: #893FBF;
}
#texto-naoass{
  color: #00E280;
}
#user-name{
  color: white;
}
#texto-naoassC{
  display: none;
}
#perfilC{
  display: none;
}


.btn-acoes {
    background-color: white;
    text-decoration: none;
    height: 30px;
    border: none;
}

#log {
    background-color: #4B0082;
    position: relative;
    padding: 10px;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

#menuAssinante-perfil {
    text-decoration: none;
    font-size: 35px;
    color: white;
}

#menuAssinante-action {
    height: 100%;
    display: flex;
    position: relative;
    flex-direction: column-reverse;
}

.menuAssinante-container {
    position: relative;
    display: inline-block;
}

/* BOTÃO DO PERFIL */
#menuAssinante-botao {
    color: gray;
    text-decoration: none;
    font-size: 40px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    right: 150%;
    bottom: 30%;
}

#menuAssinante-menu {
    position: absolute;
    right: 60px;
    top: 70%; 
    background-color: #4B0082;
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 10;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}

#menuAssinante-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

#menuAssinante-menu a {
    color: white;
    padding: 8px 5px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #21102e;
}

#menuAssinante-menu a:hover {
    background-color: #893FBF;
}

#menuAssinante-texto {
    color: #00E280;
}

#menuAssinante-username {
    color: black;
}



/*Bloco de assinante*/
#perfil-assinante {
  color: white;
  text-decoration: none;
  font-size: 30px;
  padding: 5px;
  bottom: 10px;
  display: flex;
  position: relative;
  cursor: pointer;
  justify-content: end;
}
#action-assinante{
  height: 4%;
  top: 95%;
  width: 0%;
  display: flex;
  justify-content: start;
  position:fixed;
  z-index: 999;
  flex-direction: row;
  margin-bottom: 10px;
  background-color: #00E280;
}

.profile-menu-assinante {
    display: none;
    position: absolute;
    right: -220px;
    top:-300%; 
    background-color: #6a1b9a;
    width: 230px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.591);
    border-radius: 5px;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}

.profile-menu-assinante a {
    color: white;
    padding: 8px 5px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #21102e;
}
.profile-menu-assinante.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.profile-menu-assinante a:hover {
    background-color: #893FBF;
}
#user-name-assinante{
  color: white;
  font-size: 15px;
  padding-left: 5px;
  top: 30px;
  z-index: 999;
}
.btn-nav{
  background-color: none;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border: solid 2px #9132c0;
  border-radius: 20px;
  font-size: 15px;
  margin: 0px 20px ;
  padding: 5px 30px;
  transform: translate(-1%, -1%);
  text-align: center;
  transition: all .35s;
  display: flex;
  flex-direction: row;
}

#log-btn{
  position: relative;
  z-index: 2;
}
.btn-nav:after{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background:#9132c0;
  transition: all .15s;
  border-radius: 20px;
}
.btn-nav:hover{
  color: #fff;
}

.btn-nav:hover:after{
  width: 100%;
}
#cont-bots{
  display: flex;
  flex-direction: row;
}
.conteudo-nao-logado{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
}
#slogan-vix{
  width: 500px;
  color: white;
}
#texto-vix{
  font-weight: bold;
  font-size: 30px;
}
.vix-img{
  height: 250px;
  width: 250px;
}
.cont-vix{
  display: flex;
  flex-direction: row;
  padding-bottom: 10px;
  justify-content: center;
}
#regra-cont-vix{
  display: flex;
  width: 1000px;
  height: 400px;
  justify-content: space-around;
  align-items: center;
}
#introducao-cont{
  display: flex;
  flex-wrap: wrap;
  background-color: #d8d8d8;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.vd-introducao{
  background-color: white;
  display: flex;
  flex-direction: column;
  height: 285px;
  width: 300px;
  text-align: left;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin: 30px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.542);
}
#regra-introducao{
  display: flex;
  width: 1000px;
}
.vd-introducao > h1{
  font-size: 16px;
  font-weight: bolder;
}
.vd-introducao > p{
  font-size: 14px;
}
.vd-introducao > a {
  text-decoration: none;
  color: white;
  background-color: #9132c0;
  width: 200px;
  text-align: left;
  align-content: center;
  cursor: pointer;
  font-size:23px;
  font-weight: bold;
  padding: 0px;
  border-radius: 25px;
   transition: transform 0.5s ease, background-color 0.3s ease;
}
.vd-introducao > a:hover{
  transform: scale(1.05);
  background-color: #4B0082;
} 


/* carrosel de videos */

.carrossel-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: auto;
  background: linear-gradient(0.50turn,#6a0dad,#69248b, #6a0dad)
  ;
  padding: 20px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.carrossel {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  transition: transform 0.10s ease-in-out;
}
#regra-carrossel{
  width: 1000px;
  overflow: hidden;
}

.video-card {
  position: relative;
  min-width: 200px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
  width: calc((100% - 60px) / 4);
  height: calc((100% - 40px) / 3);
  aspect-ratio: 16 / 9;
}

.video-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

.seta {
  position: relative;
  background: #55177c;
  color: white;
  border: none;
  top: 40px;
  height: 50px;
  font-size: 25px;
  padding: 5px 15px;
  border-radius: 60%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: background 0.10s;
}
.seta:hover {
  background: #9132c0;
  color: white;
}
.seta.esquerda {
  left: 50px;
}
.seta.direita {
  right: 50px;
}


/* carrosel de comentarios */
#regra-comentarios{
  width: 1000px;
}

.carrossel-comentarios-box {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  padding: 0px ;
  background: linear-gradient(0.50turn,#6a0dad,#69248b, #6a0dad); 
  box-sizing: border-box;
}

.faixa-comentarios {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.comentario-card {
  min-width: 233px;
  max-width: 233px;
  height: 150px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  width: calc((100% - 60px) / 4);
  height: calc((100% - 40px) / 3);
  aspect-ratio: 16 / 9;
}

.foto-usuario {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.nome-usuario {
  margin: 5px 0 0;
  font-size: 1.1rem;
  color: #5e2d91;
}

.estrelas {
  color: #9132c0;
  font-size: 1.2rem;
  margin: 5px 0;
}

.comentario {
  font-size: 0.95rem;
  color: #444;
  margin-top: 8px;
}

.seta-comentario {
  position: relative;
  background: #55177c;
  color: white;
  border: none;
  top: 40px;
  height: 50px;
  font-size: 25px;
  padding: 5px 15px;
  border-radius: 60%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: background 0.10s;
}
.seta-comentario:hover {
  background: #9132c0;
  color: white;
}
.esquerda-comentario {
  left: 60px;
}
.direita-comentario {
  right: 60px;
}


#cont-planos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  background: linear-gradient(0.50turn,#6a0dad,#69248b, #6a0dad); 
  padding: 20px;
}
#regra-planos{
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 1000px;
}

.planos {
  background: #9132c0;
  border-radius: 20px;
  width: 100%;
  height: 450px;
  width: 300px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.planos-contorno {
  width: 100%;
  height: auto;
}

.topo-planos {
  position: absolute;
  top: 10px;
  left: 75px;
  color: white;
  align-items: center;
  z-index: 1;
  border-bottom: solid 2px white;
  height: 25px;
  width: 130px;
}

.planos h1 {
  font-size: 1.5rem;
  font-weight: bold;
}

.planos h2 {
  font-size: 1.8rem;
  position: absolute;
  font-weight: bold;
  margin: 0;
  left: -30px;
  top: 80px;
  display: flex;
  gap: 5px;
  align-items: baseline;
}

#dinheiro {
  font-size: 1rem;
  position: absolute;
  right: 12px;
  top: 5px;
}

#valor {
  font-size: 3rem;
  position: absolute;
  left: -10px;
}

#cents {
  font-size: 2rem;
  position: absolute;
  left: 45px;
}

#mes {
  font-size: 0.8rem;
  position: absolute;
  left: 57px;
  top: 30px;
}



.btn-assinar{
  text-decoration: none;
  position: absolute;
  top: 380px;
  padding: 4px ;
  color: white;
  width: 100px;
  font-weight: bold;
  border: solid 2px #00E280;
  border-radius: 8px;
  transition: all .35s;
}
.btn-assinar:hover{
  background-color: #00E280;
}
.planos > i{
  margin-left: 20px;
  width: 280px;  
  text-align: left;
  padding: 5px;
  color:#55177c ;
}
.planos > i > span{
  color: white;
  padding-left: 5px;
  font-size: 15px;
}
/* incio rodape */
footer{
 background-color: rgb(0, 0, 0);
  background-image: url(/static/img/Fundo\ Site\ Sem\ Cor\ -.png);
  list-style: none;
  width: 100%; 
}
#regra-rodape{
  display: flex;
  justify-content: space-between;
  width: 1000px;

}
#principal-rodape{
  display: flex;
  justify-content: center;
  color: #9132c0;
  padding-top: 30px;
}
.links-rodape{
  text-decoration: none;
  color: #9132c0;
  font-size: 18px;
  margin-top: 10px;
}
.links-rodape:hover{
  color: #00E280;
}
#ajuda > h1 {
  font-size: 25px;
}
#cont-pagamentos > h1 {
  font-size: 25px;
}
#formas-pagamento{
  height: 50px;
  width: 200px;
  border-radius: 10px;
}
#img-coruja{
  height: 150px;
  width: 150px;
}
#site-seguro{
  height: 40px;
  width: 80px;
}
#cont-redes-sociais{
  height: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  border-top: solid 1px #9132c0;
}
.redes-rodape{
  color: white;  
  padding: 0px 20px 0px;
  font-size: 25px;
  color: #9132c0;
  transition: all 0.4s ease;
}
.redes-rodape:hover {
  color: #00E280;
  transform: scale(1.2); 
}
#ultimo-bloco{
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #9132c0;
  background-color: #3d1059;
  color: white;
  height: 100%;
  justify-content: space-around;
  align-items: baseline;
  text-align: center;
}
.texto-rodape{
  font-size: 13px;
  font-weight:bold ;
  align-items: center;
}
#ultimos-links{
  display: flex;
  width: 200px;
  flex-wrap: wrap;
  justify-content:space-around;
  font-weight:bold ;
}
.nav-rodape{
  color: white;
  text-decoration: none;
  font-size: 13px;
}
.nav-rodape:hover{
  color: #00E280;
}
.cont-vix{
  background:linear-gradient(0.50turn,#6a0dad,#69248b, #6a0dad); ;
}
/* Fim rodape */

#nao-assinante1 {
    position: relative;
    display: inline-block;
}

#perfil-assinante1 {
    font-size: 24px;
    color: white; /* você pode trocar a cor */
    text-decoration: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 200px;
}

.profile-menu-assinante1 {
    display: none; /* começa escondido */
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #6a0dad;
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    z-index: 999;
}

.profile-menu-assinante1 a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-bottom: solid 1px #9132c0;
}

.profile-menu-assinante1 a:hover {
    background-color: #9132c0;
}


#cont-assinaturaex{
  background: linear-gradient(0.50turn,#6a0dad,#69248b, #6a0dad);
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center; 
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
}
#logo-expirada{
  height: 200px;
  width: 200px;
}
#texto-assinatura{
  width: 300px;
  color: white;
}
.btn-assinar-exp{
  text-decoration: none;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 380px;
  padding: 4px ;
  color: white;
  width: 100px;
  font-weight:bold;
  border: solid 2px #00E280;
  border-radius: 8px;
  transition: all .35s;
}
.btn-assinar-exp:hover{
  background-color: #00E280;
}
.mes{
  display: flex;
  justify-content: center;
}
#assinatura-expirada-container{
  width: 100%;
}
#cont-planos-ex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  background-color: transparent;
  padding: 20px;
}
#texto-assinar{
  width: 500px;
  color: white;
}

/* pop-up comentarios  */
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: white;
  padding: 25px 20px;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.popup-box input,
.popup-box textarea {
  width: 100%;
  padding: 10px;
  margin-top: 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.214);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
  font-size: 14px;
  outline: none;
  resize: none;
}

.popup-box textarea:focus {
  border-color: #9132c0;
  box-shadow: 0 0 3px rgba(145, 50, 192, 0.4);
}
.popup-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.btn-env, .btn-cancel {
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  flex: 1;
  margin: 0 5px;
}
.btn-env {
  background-color: #9132c0;
  color: white;
}
.btn-cancel {
  background-color: #e0e0e0;
  color: black;
}
.avaliacao-estrelas {
  margin-top: 20px;
  text-align: left;
}
#estrelas .estrela {
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
#estrelas .estrela:hover {
  color: #a74ed4;
  transform: scale(1.2);
}
#estrelas .estrela.selecionada {
  color: #9132c0;
}
#pop-textos {
  text-align: left;
  margin-bottom: 10px;
}
#pop-textos h3 {
  margin: 0;
  font-size: 20px;
}
#aviso {
  font-size: 13px;
  color: #555;
  margin-top: 20px;
  text-align: left;
  background-color: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
}

.typing-dots {
  display: inline-block;
  width: 40px; /* largura maior para acomodar os pontos */
  text-align: center;
  font-size: 50px; /* 👈 Aumente o tamanho da fonte (tamanho das bolinhas) */
  line-height: 1;
}

.typing-dots::after {
  content: '';
  display: inline-block;
  animation: dots 1.2s steps(4, end) infinite;
}

@keyframes dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

.loading-vix {
  padding: 8px;
  color: #888;
  font-style: italic;
}


.resposta-formatada {
  background-color: #f4f4f4;
  border-radius: 12px;
  padding: 16px;
  margin: 10px 0;
  font-size: 15px;  /* 👈 Diminui o tamanho da fonte */
  line-height: 1.5;
  color: #333;
}

.resposta-formatada strong {
  font-size: 18px;  /* Títulos em negrito um pouco maiores */
  color: #9132c0;   /* Roxo discreto para destacar a Vix */
}

.resposta-formatada p {
  margin: 6px 0;
  font-size: 15px;
  color: black;
}

.resposta-formatada ul {
  padding-left: 20px;
  margin: 10px 0;
}

.resposta-formatada li {
  margin-bottom: 6px;
}
.resposta-formatada li::marker{
  color: #9132c0;
  font-weight: bold;
}

.resposta-formatada h1,
.resposta-formatada h2,
.resposta-formatada h3 {
  font-size: 16px;
  color: #9132c0;
  font-weight: bold;
  margin: 8px 0;
}

.cursor {
  display: inline-block;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.btn.ativo {
  background-color: #a74ed4;
  color: white;
}

/* Responsividade */
@media (max-width: 1100px) {
  #log{
    display:flex;
    flex-direction: column;
  }
  #notlog{
    display: flex;
    flex-direction: row;
    height:auto;
    flex-wrap: wrap;
  }
  #texto-vix{
    font-size: 15px;
    width: 100%;
  }
  #slogan-vix{
    width: 250px;
  }
   #profile-menu-assinante {
    width: 140px;
    right: -140px;
    display: none;
  }
    .links {
    display: none;
  }
  #texto-naoass{
    display: none;
  }
  .logout-btn{
    display: flex;
    margin: 10px;
  }  
  #regra-cont-vix{
    width: 100%;
    height: auto;
    flex-wrap: nowrap;
    margin-top: 40px;
    justify-content: space-around;
  }
  .vix-img{
    height: 100px;
    width: 100px;
    margin: 50px;
  }
  #regra-introducao{
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  #regra-carrossel{
    width: auto;
    flex-wrap: wrap;
    overflow: hidden;
  }
  #regra-comentarios{
    width: auto;
    flex-wrap: wrap;
    overflow: hidden;
    
  }
  #regra-planos{
    width: auto;
    flex-wrap: wrap;
  }
  #regra-rodape{
    width: auto;
    flex-wrap: wrap;
    align-items: center;
  }
  #regra-rodape{
    display: flex;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  
} 