
:root{
    ---background_primary: rgb(5 8 22);
    ---color-black: #000000;
    ---color-white: #fff;
    ---color-footer: rgb(14 22 41 / 83%);
    ---color-light: rgb(224 242 254);
}
::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: rgba(255, 255, 255, .4);
}

::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, .2);
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, .1);
}
.nav-souso-2-component-pesquisa-campo::placeholder{
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-souso-2-component-pesquisa-campo:focus::placeholder {
    transform: translateX(10px); /* Move o placeholder 10px para a direita */
    opacity: 0.5; /* Deixa o placeholder mais claro */
}

body{
    font: 300 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif !important;
    color: var(---color-white);
    transition: background-color 1s, color 0.3s;
    box-sizing: border-box;
    background: var(---background_primary);
}
.back-to-top-btn {
    position: fixed;
    bottom: 15px;
    left: 20px;
    z-index: 100;
    display: none; /* Inicialmente escondido */
    background: rgb(65, 152, 238);
    color: white;
    border: none;
    justify-content: center;
    border-radius: 9999px;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.back-to-top-btn:hover {
    background: rgba(65, 151, 238, 0.829); /* Cor mais clara ao passar o mouse */
}
#site-header h1{
    font-size: 25px;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: uppercase;
    color: white;
    list-style: none;
    text-decoration: none;
}

.container {
    max-width: 1600px; /* Largura máxima do contêiner */
    margin: 0 auto; /* Centraliza o contêiner */
  
}

header {
    background-color: var(---color-black);
    color: #fff;
    padding: 20px 0;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    position: fixed;
    right: 0;
    top: 0;
    align-items: center;
    display: flex;
    justify-content: space-between;
    left: 0;
    z-index: 1000;
}

#site-header h1 {
    font-size: 25px;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: uppercase;
    color: white;
    list-style: none;
    text-decoration: none;
}

.nav-souso-2-component-pesquisa {
    background-color: #373535b0;
    display: flex;
}
.nav-souso-2-component-pesquisa-campo {
    font: 300 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
    color: white;
    height: 20px;
    outline: none;
    width: 400px;
    text-align: start;
    padding: 12px;
    border: none;
    background: #373535b0;
}

header nav ul li a {
    color: #fff;
    transition: color 0.3s ease;
    text-decoration: none;
}
header nav ul li a:hover{
    color: rgba(255, 255, 255, 0.651);
}
nav ul li a i {
    margin-right: 3px;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul {
    display: flex;
    gap: 3px;
    white-space: nowrap;
    list-style: none;
    list-style-position: initial;
    list-style-image: initial;
    list-style-type: none;
    padding: 0;
}

.nav-souso-2-component-pesquisa-botao {
    background-color: #000000b0;
    cursor: pointer;
    color: white;
    border: none;
    padding: 10px;
    position: relative;
}
.ri-search-line {
    font-size: 20px;
}
   /* Estilo para o cabeçalho encolhido */
header.shrink {
    padding: 0; /* Remove o padding para encolher */
    height: 0; /* Define a altura como 0 para esconder */
    opacity: 0; /* Torna o cabeçalho invisível */
    transition: all 0.3s ease; /* Transição suave */
}

header.visible {
    padding: 20px; /* Restaura o padding */
    height: auto; /* Restaura a altura */
    opacity: 1; /* Torna o cabeçalho visível */
}


.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
}

/* Inicialmente mostrar o ícone de sol e esconder o de lua */
/* Inicialmente mostrar o ícone de lua e esconder o de sol */
#moon-icon {
    display: inline; /* Mantenha o ícone da lua visível por padrão */
}

#sun-icon {
    display: none; /* Esconder o ícone do sol por padrão */
}

/* Estilo para ambos ícones */
.theme-toggle i {
    color: #ffcc00; /* Cor padrão (sol) */
}

.theme-toggle i:hover {
    transform: scale(1.2);
}

/* Modo escuro (dark mode) */
body.dark-mode {
    background-color: rgb(5 8 22);
    color: #ffffff;
}

body.dark-mode .theme-toggle i {
    color: #ffffff; /* Cor para ícone no modo escuro */
}

body.dark-mode #sun-icon {
    display: none; /* Esconder o ícone do sol no modo escuro */
}

body.dark-mode #moon-icon {
    display: inline; /* Mostrar o ícone da lua no modo escuro */
}

.back-to-top-btn {
    position: fixed;
    bottom: 15px;
    left: 20px;
    z-index: 100;
    display: none;
    background: rgb(65, 152, 238);
    color: white;
    border: none;
    justify-content: center;
    border-radius: 9999px;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease, background 0.3s ease;
}

main {
    position: relative;
    top: 10rem;
}
.manga_card_main{
    align-items: center;
    display: flex;
    position: relative;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.manga_card_main_info_extra{
    flex-direction: column;
    display: flex;
    gap: 3px;
}

.manga_card_main_info_extra p {
    margin: 3px;
}
.generos_list li{
    border-radius: .25rem;
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    background: rgb(15 23 42 / 44%);
    color: var(---color-light);
    line-height: 1.5em;
    margin-bottom: auto;
    margin-top: auto;
    padding: 0 .375rem;
    transition: background 0.3s ease;
}



footer {
    background-color: var(---color-footer);
    color: var(---color-white);
    text-align: center;
    padding: 2px 0;
    font-size: 12px;
    position: relative;
    bottom: 0;
    width: 100%;
}
.manga_card h3 {
    padding: 1rem;
    background: rgb(15 23 42 / 44%);
    list-style: none;
    font-size: 15px;
    text-align: start;
    position: relative;
    margin: 0;
    text-decoration: none;
    color: var(---color-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.manga_star {
    margin: 1rem;
    text-align: left;
}

.manga_capa {
    border-radius: 1px;
    height: 250px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.manga_card a {
    gap: 0.3rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.manga_card {
    position: relative;
    overflow: hidden;
}
.manga_card {
    background: rgb(8 13 26 / 52%);
    border-radius: 0.5rem;
    overflow: hidden;
    width: 160px;
    text-align: center;
    transition: transform 0.2s;
}

.manga_star span {
    color: #ccc;
}
.manga_star {
    margin: 1rem;
    text-align: left;
}
.container-catalogos-mangas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
}

#container-principal{
    padding: 0.125rem 0.75rem;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4f4f4f9d;
    color: white;
    padding: 1.5rem;
    opacity: 0;
    text-align: start;
    transition-delay: .1s;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transform: scale(1);
    box-sizing: border-box;
}

.overlay h4 {
    font-size: 12px;
    white-space: normal;
    text-overflow: unset;
}

.overlay p.overlay-text {
    font-family: sans-serif;
    margin: 0.1rem 0;
    font-size: 12px;
    font-weight: 700;
}

#btn_iniciar_leitura {
    display: flex;
    white-space: nowrap;
    position: absolute;
    bottom: 2rem;
    margin: 0.5rem;
    align-content: center;
    font-size: 15px;
    transition: color 0.3s ease;
    align-content: center;
}

.manga_capa:hover .overlay {
    opacity: 1; /* Torna o overlay visível quando hover */
    transform: scale(1.2); /* Aumenta o tamanho do overlay */
    transform-origin: center; /* Define o centro da transformação */
}

.flag_icon {
    width: 25px !important;
    height: 25px !important;
    position: absolute;
    bottom: 2px;
    right: 2px;
    border-radius: 1rem;
}

.manga_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}


.pagination{
    display: flex;
    margin: 5rem;
}
.pagination a{
    border-radius: 5px;
    border: 1px solid white;
    padding: 10px;
    color: var(---color-light);
    list-style: none;
    text-decoration: none;
}

body{
    font: 300 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
    background-color: #242428;
    overflow: hidden;
}

:root{
    --color-text-1: white;
    --color-text-2: black;
    --color-text-select: #767676;
    --color-buttom-primary: #ffe484;
    --color-buttom-secundary: #9fff00;
    --color-buttom-terciary: #ff530d; /* Cor terciária */

}
::-webkit-scrollbar {
    width: 8px; /* Largura da barra de rolagem */
}

::-webkit-scrollbar-track {
    background: #4e4e4e; /* Cor de fundo da barra de rolagem */
}

.container-lista-favoritos{
    margin: 100px;
    margin-top: 80px;
}

::-webkit-scrollbar-thumb {
    background: #5a2e98; /* Cor do indicador da barra de rolagem */
    border-radius: 5px; /* Borda arredondada do indicador */
}

.ul-souso-3-barra-lateral a.active {
    position: relative;
    background: linear-gradient(87deg, #ff5a00 0%, #ffad42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: background 0.5s ease, -webkit-background-clip 0.5s ease, -webkit-text-fill-color 0.5s ease;
}

.alert-timestamp{
    display: flex;
    margin-left: 10px;
    color: #000000d5;
    align-items: center;
    font-size: 12px;
}

.souso-caixa-alerta {
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease, border 0.3s ease;
    max-height: 500px; /* Valor inicial grande para a altura máxima */
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
  }
  
  .souso-caixa-alerta.collapsed {
    max-height: 0; /* Altura zero quando recolhido */
    padding: 0;
    margin-bottom: 0;
    border: none;
  }

  .souso-caixa-conteudo{
    padding-top: 25px;
    flex-direction: column;
    display: flex;
  }
  .souso-alerta-icone-sino{
    fill: block;
  }

  
  .souso-caixa-alerta.visible {
    opacity: 1; /* Fica visível */
    transform: scale(1); /* Escala para o tamanho normal */
  }
  
  .alert-ico a{
    color: black;
    margin-left: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
  }
  .souso-alerta-icone path {
    stroke: rgb(0, 0, 0); /* Cor padrão da linha */
    stroke-width: 4; /* Define a espessura da linha */
    transition: stroke 0.4s ease;
  }
  
  /* Mudança de cor ao passar o mouse */
  .souso-alerta-botao:hover .souso-alerta-icone path {
    stroke: rgb(56, 56, 56); /* Cor da linha ao passar o mouse */
  }
  @keyframes swing {
    0% {
      transform: rotate(0deg);
      transform-origin: center;
    }
    50% {
      transform: rotate(-10deg);
      transform-origin: center;
    }
    100% {
      transform: rotate(0deg);
      transform-origin: center;
    }
  }

  .souso-caixa-conteudo p{
    padding: 0;
    margin-top: 4px;
  }
  .alert-ico{
    align-items: center;
    display: flex;
    top: 0;
    margin-top: 5px;
    margin-left: 10px;
    padding: 3px;
    left: 0;
    position: absolute;
  }
  
  /* Estilos para o SVG do sino */
  .souso-alerta-icone {
    width: 13px;
    flex: 1;
    align-items: center;
    display: flex;
    top: 0;
    height: 13px;
    margin: 0;
    animation: swing 0.3s ease infinite;
    transform-origin: center;
  }
.btn-retorno a {
    color: white;
    list-style: none;
    transition: color 0.4s ease;
    text-decoration: none;
}
.souso-div-form {
    padding: 20px;
    float: none; /* Remove flutuação para melhor controle de layout */
    margin: 0 auto; /* Centraliza o formulário */
    height: auto; /* Ajusta a altura ao conteúdo */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px; /* Define um limite máximo de largura */
}
.souso-div-form h2 {
    color: #e5e5e5;
    text-align: center;
    margin-bottom: 20px;
}
.souso-div-form input[type="text"],
.souso-div-form input[type="email"],
.souso-div-form input[type="password"],
.souso-div-form button {
    padding-left: 40px; /* Ajuste conforme necessário para a largura do ícone */
    padding-top: 10px;  /* Ajuste se necessário para o alinhamento vertical */
    padding-bottom: 10px; /* Ajuste se necessário para o alinhamento vertical */
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
    color: rgb(204, 204, 204);
    border-radius: 5px;
    background: transparent;
    margin: 10px 0;
    border-radius: 4px;
    border: 3px solid #555555;
}
.souso-div-form button {
    font-weight: bold;
    height: 50px;
    background-color: #5a2e98;
    color: white;
    border: none;
    padding-left: 0px;
    cursor: pointer;
}
.souso-div-form button:hover {
    background-color: #5a2e98;
}
.souso-div-form .toggle-link {
    text-align: center;
    display: block;
    margin-top: 10px;
    color: #ffffff;
    cursor: pointer;
}
.btn-retorno a:hover {
    color: rgba(255, 255, 255, 0.288);
}

  .souso-alerta-botao {
    display: flex;
    font: message-box;
    font-weight: bolder;
    position: absolute;
    top: 0;
    cursor: pointer;
    align-items: center;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
    box-sizing: content-box;
    width: 1em;
    background: transparent;
    height: 1em;
    padding: .25em;
    color: #000;
    border: 0;
    border-radius: .25rem;
    opacity: .8;
  }
  @keyframes bounce {
    0% { transform: scale(0.9); opacity: 0; }
    50% { transform: scale(1.01); opacity: 1; }
    100% { transform: scale(1); }
  }

  .doacao-section h1{
    color: #ffffffb8;
  }
  .conteudo-souso-pedidos h4{
    color: #ffffffb8;
  }
    .conteudo-souso-pedidos p{
        color: #ffffffb8;
    }
    


  .conteudo-souso-pedidos span{
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
    animation: bounce 1s ease;
    background: blueviolet;
    color: white;
    padding: 10px;
  }

  .doacao-section p{
    color: #ffffff9c;
  }
  .doacao-section div{
    color: #ffffff9c;
  }
  .conteudo-souso-pedidos{
    padding: 30px;
    display: flex;
    flex-direction: column;
  }


  .container-btn-doar {
    display: flex;
    overflow: hidden;
    animation: bounce 1s ease;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Ajuste o espaçamento conforme necessário */
}

.btn-doar {
    display: inline-block;
    width: 180px;
    height: 50px;
    background-image: url('../img/tipaai.png'); /* Verifique o caminho da imagem */
    background-size: cover; /* Ajusta o tamanho da imagem de fundo */
    background-position: center;
    text-indent: -9999px; /* Oculta o texto, pois a imagem é o foco */
    border: none;
    text-decoration: none;
    /* Adicione outras propriedades de estilo se necessário */
}

  .souso-caixa-alerta {
    opacity: 0; /* Começa invisível */
    animation: bounce 1s ease; /* Adiciona a animação */
  }
  
  .souso-caixa-alerta.visible {
    opacity: 1; /* Fica visível */
    transform: scale(1); /* Escala para o tamanho normal */
  }
  
.souso-caixa-titulo{
        -webkit-text-stroke-width: thick !important;
        color: #8800ff;
}
  .souso-caixa-alerta a {
    font-size: 13px;
    text-align: start;
    padding: 0;
    font-weight: bolder;
  }
  .souso-caixa-alerta {
    position: relative;
    padding: 1rem;
    margin-bottom: 3rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    display: flex;
    flex-direction: column;
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
  }
  

.ul-souso-3-barra-lateral a.active::after {
    border-radius: 5px 4px 0 0;
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px; /* Mantém a altura da barra constante */
    background: linear-gradient(87deg, #b94100 0%, #ff9100 100%);
    transition: background 0.5s ease;
}

.ul-souso-3-barra-lateral a.active:hover {
    background: linear-gradient(87deg, #e55a00 0%, #f8a042 100%); /* Gradiente escurecido para hover */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ul-souso-3-barra-lateral a.active:hover::after {
    background: linear-gradient(87deg, #a94100 0%, #d58100 100%); /* Gradiente escurecido para hover */
}

.capa-resultados img {
    user-select: none;
}



body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("https://wallpapers-clan.com/wp-content/uploads/2024/04/cute-anime-girl-in-shark-costume-desktop-wallpaper-preview.jpg") no-repeat center center;
    background-size: cover;
    opacity: 0.9;
    z-index: -1;
    animation: zoomAndMoveBackground 40s ease-in-out infinite;
}

@keyframes zoomAndMoveBackground {
    0% {
        background-size: 100%;
        background-position: center center;
        transform: scale(1);
    }
    25% {
        background-size: 110%;
        background-position: top right;
        transform: scale(1.1);
    }
    50% {
        background-size: 120%;
        background-position: bottom left;
        transform: scale(1.2);
    }
    75% {
        background-size: 110%;
        background-position: top left;
        transform: scale(1.1);
    }
    100% {
        background-size: 100%;
        background-position: center center;
        transform: scale(1);
    }
}

* {
    box-sizing: border-box;
}

.nav-souso-1-botao-lateral{
    height: 100%;
    position: relative;
    display: flex;
    right: 50px;
    margin-left: auto; 
    align-items: center;
    text-align: right;

}

.nav-souso-1-botao-lateral-1 {
    background: transparent;
    border: none;
    font-size: 10px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    border-radius: 10px;
}

.nav-souso-1-botao-lateral-1 i {
    color: rgb(255, 255, 255);
}

.nav-souso-1 {
    list-style: none;
    z-index: 1000;
    align-items: center; 
    display: flex;
    height: 80px;
    top: 0;
    width: 100%;

    position: fixed;
    background: #00000085;
}

.nav-souso-2{
    height: 100%;
    position: absolute;
    display: flex;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Translada o contêiner filho para o centro */
    align-items: center;
    text-align: right;
    justify-content: flex-end;
}

.nav-souso-2-component-pesquisa-campo{
    font: 300 16px '__poppins_f68cdc','__poppins_Fallback_f68cdc',Arial,sans-serif;
    color: white;
    height: 60px;
    outline: none;
    width: 400px;
    text-align: start;
    padding: 12px;
    border: none;
    background: #000000b0;
}

.anime-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.anime-details {
    gap: 10px;
    flex: 1;
    margin-left: 15px;
}

.rating-container {
    color: white;
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-top: 10px;
}

.rating-icon {
    color: #ffc107; /* Cor amarela para o ícone de estrela */
    margin-right: 5px;
}

.anime-details h3 {
    margin: 0;
    font-size: 1.5rem;
}

.anime-details p {
    font-size: 12px;
    margin: 5px 0;
}

.lista-favoritos{
    padding: 25px;
    margin: 10px;
    background: linear-gradient(to right, #1d1c1c, #1f1e1e 50%, #1b1a1a 50%, #080808);

}

.lista-favoritos p{
    color: white;
    font-family: sans-serif;
    text-align: start;
}
.anime-details ul {
    max-width: 100%;
    font-size: 10px;
    white-space: nowrap;
    list-style: none;
    padding: 0;
}
.anime-item {
    
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: none;
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: rgba(20, 20, 20, 0.8);
    transition: transform 0.3s ease;
}
.anime-details ul li {
    color: white;
    font-weight: bold;
    font-family: sans-serif;
    border: 0.5px solid #ffffff73;
    display: inline-block;
    background-color: #00000000;
    padding: 2px 10px;
    border-radius: 15px;
    margin-right: 5px;
}


.dli-post-element button{
    cursor: pointer;
    background: transparent;
    color: rgb(16 100 191);
    border: none;
}

.dli-post-element{
    position: absolute;
    align-self: end;
    display: flex;
}


.info-button-deleta{
    margin-top: 120px;
    align-self: flex-end;
    display: flex;
    position: absolute;
    align-self: end;
}
.anime-sinopse {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.delete-button-pc{
    display: block !important;
    font-size: 12px !important;
    align-self: baseline !important;
    background-color: #ff0000 !important;
    color: white !important;
    border: none !important;
    padding: 5px 10px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    margin-left: auto !important;
}

.delete-button {
    display: none;
}

.delete-button:hover {
    background-color: #ff0d23eb;
}

.anime-item.deleting {
    background-color: #ffffffeb;
    transform: translateX(-100%);
    transition: transform 0.3s ease-out, background-color 0.3s ease-out;
}

.anime-item.deleting .delete-button {
    display: none;
}

.anime-details h3:hover{
    color: #494949;
}
.modal {
    position: fixed;
    bottom: 20px;
    top: 15%;
    right: 20px;
    width: 300px;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: translateX(100%);
    opacity: 0;
    z-index: 1000;
    border-radius: 5px;
    max-height: 62px;
}

.spinner-container {
    position: fixed;
    top: 83%;
    display: none ;
    left: 30px;
    color: rgba(255, 255, 255, 0.185);
    margin: 1rem;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
/* Estiliza o spinner */
.spinner-container svg {
    width: 2rem; /* Ajusta o tamanho do spinner */
    height: 2rem;
    animation: spin 0.2s linear infinite; /* Animação de rotação contínua */
    fill: #ff9913; /* Cor do spinner, você pode ajustar conforme necessário */
}

/* Define a animação de rotação */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}




.input-group i { 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 18px;
}

.input-group i.fa-envelope {
    left: 10px;
}

.input-group i.fa-lock {
    left: 10px;
}

.input-group input {
    padding-left: 30px;
}

.input-group i.fa-eye {
    right: 10px;
    cursor: pointer;
}

.modal-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    justify-content: space-between;
}

.modal.show {
    transform: translateX(0);
    opacity: 1;
    max-height: 62px;

}


.modal-content.error {
    background-color: #f14e4e;
}

.modal-content.success {
    background-color: #2bd22b;
}

.close-button {
    float: right;
    font-size: 20px;
    cursor: pointer;
}

#modal-message {
    color: white;
    margin: 0;
    font-size: 16px;
}

.close-button {
    float: right;
    font-size: 20px;
    cursor: pointer;
}
.cabeçalho-lista-fav h1{
    color: white;
    font-family: sans-serif;
}
.status-concluido {
    color: #2fff2ff0;
}

.status-em-andamento {
    color: blue;
}

.status-hiato {
    color: orange;
}

.status-cancelado {
    color: red;
}

.status-default {
    color: gray;
}
.anime-item img {
    align-self: start;
    width: 100px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}
.info-button-container {
    transition: background 0.3s ease;
    font-size: 22px;
    position: absolute;
    border-radius: 50%;
    align-self: end;
    padding: 7px;
    display: flex;
}

.info-button-container:hover {
    background: rgba(49, 49, 49, 0.8);
}
.anime-details {
    display: flex;
    flex-direction: column;
}
.info-button-container a {
    cursor: pointer;
    background: transparent;
    color: rgb(16 100 191);
    border: none;
}
.anime-details h3 {
    max-width: 90%;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
    color: #cfcfcf;
}

.anime-details p {
    margin: 0;
    color: #666;
}


.nav-souso-2-component-pesquisa{
    background-color: #000000b0;
    display: none;
}

.nav-souso-2-component-pesquisa-botao{
    background-color: #000000b0;
    cursor: pointer;
    color: white;
    border: none;
    padding: 10px;
    position: relative;
}

.ri-menu-line{
    font-size: 35px!important;
}

.ri-search-line{
    font-size: 20px;
}

.nav-souso-1-conteudo-animes {
    border-radius: 3px;
    background: #222020a6;
    width: auto;
    padding-top: 30px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 0.62rem;
    flex-wrap: wrap;
    position: relative; /* Adicionado */
}

.nav-souso-3-site-nome-1{
    font-weight: bold;
    font-family: sans-serif;
    cursor: pointer;
    left: 20px;
    font-size: 25px;
    position: relative;
    color: white;
}
@keyframes emergeCenterEffect {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    60% {
        opacity: 1;
    }
    100% {
        transform: none;
    }
}


/* Adicione seu CSS aqui */
.souso-conteudo-detalhes-1 {
    margin-top: 10%;
    background: linear-gradient(to right, #1d1c1c, #1f1e1e 50%, #1b1a1a 50%, #080808);
    position: relative;
    display: flex;
    padding: 25px;
    margin: 10px;
    flex-wrap: wrap;
}
.capa-container {
    text-align: center;
    align-content: center;
    flex: 1;
    max-width: 250px; /* Ajuste conforme necessário */
}

.back-links {
    margin-top: 10px;
    color: white;
    cursor: pointer;
    font: none;
    list-style: none;
    display: flex;
    text-decoration: none;
}
.back-links p {
    color: white;
    cursor: pointer;
    font: none;
    list-style: none;
    display: flex;
    text-decoration: none;
}

.back-links p a {
    font-size: 12px;
    color: white;
    cursor: pointer;
    font: none;
    list-style: none;
    display: flex;
    text-decoration: none;
}

.capa-container img {
    width: 100%;
    height: auto;
}
.info-container {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.titulo-container {
    overflow: hidden;
    max-width: 100%;
    color: white;
}
.extra-info {
    flex: 1;
    font-size: 13px;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;

}

.empty-message-container p{
    margin: 5px;
    gap: 3px;
}
.empty-message-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

#responseMessage{
    display: flex;
    text-align: center;
    color: red;
    place-content: center;
    font: 700 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
}
.chibi-image {
    pointer-events: none;
    max-width: 200px;
    margin-bottom: 10px;
}

.empty-message {
    font-size: 18px;
    color: #555;
    text-align: center;
}
.sinopse-container{
    padding: 0.5rem;
    overflow: auto;
    height: 105px;
    margin: 1rem 20px;
    font-size: 14px;
    color: white;
}

.capa-container img{
    object-fit: cover;
    width: 174px;
    user-select: none;
    height: 275px;
    border-radius: 5px;
    transition: all 0.3s ease 0s;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 20px 0px, rgba(0, 0, 0, 0.12) 0px 0px 2px 0px;
}
.conteudo{
    height: 90%;
    position: absolute;
    top: 10%;
}

.episodios-container{
    border-radius: 3px;
    background: #0201015f;
    width: auto;
    padding: 130px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 0.62rem;
    flex-wrap: wrap;
    position: relative;
}
.episodio-capa {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}

.container-tags h2{
    font-weight: bold;
    color: white;
    font-size: 15px;
}
.episodio-card{
    animation: emergeCenterEffect 0.5s linear 0s 1 normal none running;
    height: 200px;
    margin-bottom: 5px;
    border-radius: 5%;
    padding: 10px;
    background-color: rgba(20, 20, 20, 0.8);
    text-align: center;
    width: 150px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.souso-compartillhar{
    transition: color 0.3s ease;
    display: flex;
    position: absolute;
    align-self: end;
    cursor: pointer;
}

.watchlist-button:hover{
    color: rgba(255, 255, 255, 0.472);
}

.souso-compartillhar:hover{
    color: rgba(255, 255, 255, 0.472);
}

.episodio-card img:hover{
    transform: scale(1.1); /* Aplica o zoom na imagem ao passar o mouse */
}

.episodio-card h3 {
    cursor: pointer;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: 130px;
    align-content: center;
    border-radius: 3px;
    background: linear-gradient(87deg, #2721275e 0, #716b6b26 100%);
    cursor: pointer;
    color: rgb(255, 255, 255);
    text-overflow: ellipsis;
    height: 50px;
    font-size: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.episodio-card p {
    cursor: pointer;
    margin: 0;
}

.episodio-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.filtros-container {
    max-width: 15%;
    outline: none;
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#pesquisar-episodio {
    color: white;
    outline: none;
    background-color: transparent;
    border: 1px solid rgb(48, 48, 48);
    padding: 5px;
    font-size: 16px;
    flex: 1;
}

#filtrar-episodios {
    max-width: 20%;
    border-radius: 3px;
    flex-direction: row-reverse;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: transparent;
    cursor: pointer;
    color: white;
    border: none;
    padding: 10px;
    position: relative;
}

#filtrar-episodios:hover{
    background: #5a2e98;
    transition: background 500ms ease-in-out;
}

.container-detalhes-tags h1{
    font-size: 10px;

}



.souso-header-1{
    padding: 30px;
    top: 100px;
    position: relative;
}

.souso-header-component{
    text-align: center;
    font-size: 14px;
    color: white;
}

.souso-header-component p{
    margin-top: 0;
    margin-bottom: 1rem;
}

.Parceiros{
    white-space: nowrap;
}

.Parceiros i{
   cursor: pointer;
   list-style-type: none;
   text-decoration: none;
   outline: none;
   list-style: none;
   color: white;
}
.nav-souso-1-btn-recolhimento{
    display: none;
}
  
.Parceiros i a{
    cursor: pointer;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    list-style: none;
    color: #ffbb1c;
}

.div-souso-3-barra-lateral {
    display: none;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 900;
    height: 130%;
    background: #000000eb;
}

.ri-close-line{
    cursor: pointer;
    font-size: 45px;
    border: none;
    background-color: transparent;
    border: 1px white;
    color: white;
}

.div-souso-3-barra-lateral {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px; /* Defina a largura do menu lateral */
    background: #000000eb;
    z-index: 900;
    transform: translateX(-100%); /* Inicialmente fora da tela */
    transition: transform 0.3s ease-in-out; /* Transição suave */
    overflow-y: auto;
}
.div-souso-3-barra-lateral.show {
    transform: translateX(0); /* Visível na tela */
}

.input-group input:focus {
    border-color: #6709eb; /* Cor da borda em foco */
    border-width: 3px; /* Espessura da borda em foco */
    box-shadow: 0 0 5px rgba(90, 46, 152, 0.5); /* Efeito de brilho opcional */
}
.body-no-scroll {
    overflow: hidden;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus
 {
    border-color: #6709eb; /* Choose your desired color */
    border-width: 3px; /* Increase border thickness */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(90, 46, 152, 0.5); /* Optional: Add a subtle glow effect */
}


.msg-inform-souso {
    padding: 20px;
    float: none; /* Remove flutuação para melhor controle de layout */
    margin: 0 auto; /* Centraliza a mensagem */
    height: auto; /* Ajusta a altura ao conteúdo */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px; /* Define um limite máximo de largura */
}
.msg-inform-souso ul li{
    color: white;
    font-weight: 800;
}

.btn-retorno{
    place-content: center;
    align-items: center;
    display: flex;
    position: relative;
    font-size: 15px;
    white-space: nowrap;
    margin-top: 8%;
}
.msg-inform-souso h1{
    color: white;
    font-weight: 800;
}

.msg-inform-souso ul{
    color: white;
    font-weight: 800;
}
.container-fazer-login {
    margin-top: 3%;
    display: flex;
    border-radius: 5px;
    justify-content: space-between;
    background: rgba(30, 30, 30, 0.6);
    height: 95%; /* Ajustado para se ajustar ao conteúdo */
    align-items: center;
    padding: 20px; /* Adiciona um pouco de espaçamento */
    box-sizing: border-box;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: transparent; /* Cor de fundo da barra de carregamento */
    z-index: 9999; /* Certifique-se de que a barra de carregamento fique acima de outros elementos */
    display: none; /* Inicialmente escondido */
}
  
#loader-progress {
    width: 0%;
    height: 100%;
    background-color: #7412ff; /* Cor da barra de progresso */
    transition: width 0.4s ease; /* Animação de transição suave */
}


.conteudo,
.div-souso-3-barra-lateral,
.nav-souso-1{
    right: 0;
    left: 0;
    width: 100%; /* Você pode ajustar isso para uma largura fixa desejada, por exemplo: 800px; */
    max-width: 2000px; /* Largura máxima para evitar que se estenda indefinidamente */
    margin: 0 auto; /* Centraliza o conteúdo */
    padding: 20px;
    box-sizing: border-box; /* Garante que o padding não incremente a largura total */
}

.submenu {
    display: none;
    list-style-type: none;
    padding-left: 20px;
}

.ul-souso-3-barra-lateral li:hover .submenu {
    display: block;
}

.submenu li {
    padding: 5px 0;
}

.submenu li a {
    color: white;
    text-decoration: none;
}

.submenu li a:hover {
    color: #ccc;
}


.ul-souso-3-barra-lateral a{
    color: white;
    transition: color 0.4s ease; /* Transição suave de cor ao passar o mouse */
    list-style-type: none;
    text-decoration: none;
    outline: none;
    list-style: none;
}

.ul-souso-3-barra-lateral {
    transition: color 0.4s ease; /* Transição suave de cor ao passar o mouse */
    right: 40px;
    position: relative;
    top: 40px;
    float: right;
    list-style-type: none;
    padding: 0;
}

#expand-trailer-btn{
    transition: color 0.4s ease; /* Transição suave de cor ao passar o mouse */
    background: transparent;
    color: white;
    border: none;
    cursor: pointer;
}
#expand-trailer-btn:hover{
    color: rgba(255, 255, 255, 0.741);
}

.trailer {
    color: rgba(255, 255, 255, 0.741);
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease; /* Transição suave de altura */
}
.trailer-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    justify-content: center; /* Centraliza verticalmente */
}

.ul-souso-3-barra-lateral li {
    transition: color 0.4s ease; /* Transição suave de cor ao passar o mouse */
    padding: 10px;
    text-align: left;
    list-style: none;
}

.souso-sociais{
    justify-content: right;
    display: flex;
    margin-top: 10px;
}

.ul-souso-3-barra-lateral li a {
    text-decoration: none;
    margin: 3px;
    list-style: none;
    color: white;
    display: block;
    transition: color 0.4s ease; /* Transição suave de cor ao passar o mouse */
}
.scroll-to-top {
    position: fixed;
    bottom: 15px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: #7f14ff;
    color: #fff;
    border: none;
    border-radius: 20%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 15px;
    z-index: 1000;
    transition: opacity 0.3s;
}

.scroll-to-top.hidden {
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}


.ul-souso-3-barra-lateral li a:hover {
    color: rgba(255, 255, 255, 0.741);
}

.ul-souso-3-barra-lateral{
    transition: color 0.4s ease;
    list-style: none;
    text-decoration: none;
}

.ul-souso-3-barra-lateral :hover {
    transition: color 0.4s ease;
    color: rgba(255, 255, 255, 0.741);
}


.souso-titulo-episodio{
    padding: 5px;
    background: #05164f8d;
    color: rgb(255, 255, 255);
    border-radius: 10px;
}

.container-detalhes-ep{
    margin: 5px;
    border: 2px solid #ffffff2b;
    padding: 10px;
}

.container-detalhes-ep h2{
    font-size: 13px;
}
.souso-titulo-episodio {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 8px;
    background: linear-gradient(to right, #1d1c1c, #1f1e1e 50%, #1b1a1a 50%, #080808);
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.souso-conteudo-dealhes-visu{
    position: relative;
    margin-top: 5%;
}
.souso-titulo-episodio-capa {
    flex-shrink: 0;
    margin-right: 15px;
    position: relative;
}
.souso-titulo-episodio-capa img {
    cursor: pointer;
    margin: 5px;
    height: 100px;
    width: auto;
    border-radius: 4px;
}
.cookie-popup {
    user-select: none; /* Evita a seleção de texto */
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #000000ed;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
.cookie-popup p a {
    user-select: none; /* Evita a seleção de texto */
    color: rgb(106 6 213 / 95%);
    font-weight: 700;
}

.cookie-popup p {
    user-select: none; /* Evita a seleção de texto */
    color: white;
}

#accept-cookies {
    user-select: none; /* Evita a seleção de texto */
    background-color: rgb(106 6 213 / 95%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 60px;
    cursor: pointer;
}
.souso-titulo-episodio-titulo{
    font-size: 80%;
}

.episodios-container p{
    color: white;
}

.container-episodio-views-link{
    display: flex;
    justify-content: center;
}

.titulo-container .titulo{
    font-size: 25px;
}

.container-capa-ep-views-link{
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.container-capa-ep-views-link img{ 
    border: 3px solid #33333396;
    width: 95%;
    height: auto;
}

.container-capa-ep-views-link{
    width: 80%;
    height: auto;
}

#souso-titulo-episodio-nome{
    cursor: pointer;
}

.episodios-detalhes-visu{
    width: 100%;
}

.container-controles-souso {
    background-color: #1505538f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    margin-left: 100px;
    margin-right: 100px;
}

.container-controles-souso a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-controles-souso .controle-anterior,
.container-controles-souso .controle-proximo,
.container-controles-souso .controle-menu {
    display: flex;
    border: 0.5px solid #3b3737;
    justify-content: center;
    align-items: center;
    width: 100%;
    border-radius: 3px;
    height: 60px;
    background-color: #1505538f;
    color: #ffffff;
    font-size: 20px;
    transition: background-color 0.3s, color 0.3s;
    padding: 10px;
}

.container-controles-souso .controle-anterior span,
.container-controles-souso .controle-proximo span {
    font-size: 12px;
    margin-top: 5px;
}

.container-controles-souso .controle-anterior:hover,
.container-controles-souso .controle-proximo:hover,
.container-controles-souso .controle-menu:hover {
    background-color: #2b076d41;
    color: #fff;
}

.souso-lista-episodios-components{
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.active{
    color: rgba(255, 255, 255, 0.727);
}

#ordenar-crescente {
    cursor: pointer;
    margin: 5px;
    transition: color 0.3s ease; /* Adiciona uma transição suave de 0.3 segundos */
}

#ordenar-decrescente {
    cursor: pointer;
    margin: 5px;
    transition: color 0.3s ease; /* Adiciona uma transição suave de 0.3 segundos */
}
.componets-ordem{
    color: rgba(255, 255, 255, 0.472);
    padding: 2px 5px;
    font-family: sans-serif;
}

#ordenar-crescente:hover{
    color: rgba(255, 255, 255, 0.653);
}

#ordenar-decrescente:hover{
    color: rgba(255, 255, 255, 0.653);
}



.show-comments {
    cursor: pointer;
    border: none;
    color: white;
    background: linear-gradient(135deg, #3a3a3a54, #23232369);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    gap: 10px;
    transition: background 2s ease, box-shadow 2s ease, transform 0.5s ease;
}
.show-comments:hover {
    background: linear-gradient(135deg, #343434bf, #2b2b2ba5);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.show-comments:active {
    transform: translateY(2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

#seçao_comentarios{
    top: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#disqus_thread {
    width: 80%; /* Defina a largura desejada, por exemplo, 80% */
    margin: 0 auto; /* Isso centralizará o elemento horizontalmente na página */
    margin-top: 150px; /* Adiciona uma margem superior de 150px */
}

.souso-container-resultado{
    border-radius: 3px;
    background: #222020a6;
    width: auto;
    padding-top: 30px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 0.62rem;
    flex-wrap: wrap;
    position: relative;
}

.catalog-item{
    height: 280px;
    margin-bottom: 5px;
    border-radius: 5%;
    padding: 10px;
    background-color: rgba(20, 20, 20, 0.8);
    text-align: center;
    width: 150px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-item img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.catalog-item img:hover{
    transform: scale(1.1); /* Aplica o zoom na imagem ao passar o mouse */
}

.catalog-item h3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: 130px;
    align-content: center;
    border-radius: 3px;
    background: linear-gradient(87deg, #2721275e 0, #716b6b26 100%);
    cursor: pointer;
    color: rgb(255, 255, 255);
    text-overflow: ellipsis;
    height: 50px;
    font-size: 11px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capa-resultados{
    height: 250px;
    object-fit: cover;
    position: relative;
    overflow: hidden;
}
.input-group i.fa-user {
    left: 10px;
}

.terno-pesquisado{
    color: white;
}

.nav-souso-3-site-nome-1 a{
    color: white;
    text-transform: uppercase;
    list-style: none;
    text-decoration: none;
}

.container-detalhes-ep p{
    font-size: 10px;
}

.loading-animation {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
}

.loading-animation::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid #FFF;
    animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg) }
}

@keyframes prixClipFix {
    0% { clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0) }
    25% { clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0) }
    50% { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%) }
    75% { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%) }
    100% { clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0) }
}
.container-caoa-titulo{
    width: 100%;
    margin: 5px;
    border: 2px solid #ffffff2b;
    padding: 10px;
    display: flex;
}

.tags{
    color: white;
    margin: 70px;
    padding: 10px;
    display: flex;
    height: auto;
    margin-top: 100px;
}

.tag{
    font-weight: bold;
    font-size: 15px;
}

.container-detalhes-tags{
    margin-top: 5px;
}

.container-detalhes-tags span{
    font-weight: bold;
}

.container-detalhes-Sinopse span{
    font-weight: bold;
}

.container-detalhes-ep hr{
    width: 100%;
    border: 1px solid #ffffff2b;
}


.capa-container {
    position: relative;
}

.souso-component-img-capa {
    position: relative;
}

.anime-imagem {
    width: 100%;
    height: auto;
}

.watchlist-button {
    transition: color 0.3 ease;
    display: flex;
    width: 24.9px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 34px;
    position: absolute;
    top: 2px;
    bottom: 0;
    left: 0;
    padding: 10px;
}

.mascot{
    z-index: 100;
    position: absolute;
    right: 0;
    bottom: 0;
    background-image: url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiAWkPOxJVqkc0xIyKBoulfxbN9BXFI1j6jQMc9SnV2HjiESbR7VvDZM6FheAGZ86P57AnIEhX0Wy8HFw0xkd8lGV4svCOHtD9oecMQr22ItBvEVrLcJMixvPtvN31uIZZY-z0clWZD4iPkQ8A7Gpo_JkJkI9tW0dOvw9nmT1Lr1znL3xKJaLbq49s_Yw/s1600/IMG_20220521_032343.png);
    background-size: contain;
    width: 260px;
    height: 370px;
    background-repeat: no-repeat;
}

.favorites-message {
    top: 90px;
    position: fixed;
    right: 50px;
    transform: translateX(-50%);
    background: #343a40;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}


.favorites-message i {
    margin-right: 10px;
}

.favorites-message.show {
    opacity: 1;
}

.favorites-message.hidden {
    opacity: 0;
}
.souso-component-img-capa{
    display: inline-flex;
}

.ipc-watchlist-ribbon {
    cursor: pointer;
}

.ipc-watchlist-ribbon__bg {
    width:"24px";
    height:"34px";
    opacity: 0.8;
    fill: rgba(58, 58, 58, 0.6); /* Cor mais escura com 60% de opacidade */
}

.lista-de-favoritos{
    transition: color 0.4s ease;
    cursor: pointer;
    padding: 10px;
    align-items: center;
    display: flex;
    color: white;
    justify-content: right;
}

.share-submenu {
    position: absolute;
    border-radius: 5px;
    top: 70px;
    cursor: pointer;
    transition: background 0.3s ease;
    right: 10px;
    background: #1d1d1df7;
    color: white;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.share-submenu:hover{
    background: #323232f7;
}

.share-submenu a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.share-submenu a:hover {
    background-color: #575757;
}

.show {
    opacity: 1;
    transform: translateY(0);
}
.ipc-watchlist-ribbon__bg-ribbon{
    opacity: 0.8;
}
.ipc-watchlist-ribbon__bg-hover {
    opacity: 0.8;
    fill: rgba(0, 0, 0, 0.34); /* Cor de hover com 34% de opacidade */
}

.ipc-watchlist-ribbon__bg-shadow {
    opacity: 0.8;
    fill: rgba(255, 255, 255, 0.5); /* Sombra com 50% de opacidade */
}
.ipc-watchlist-ribbon__icon{
    color: white;
    transition: color 0.3s ease;
}

.ipc-watchlist-ribbon__icon:hover{
    color: rgba(255, 255, 255, 0.472);
}

.ipc-watchlist-ribbon__icon {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    fill: #ffffff;
}

/* Estilo do Modal de Pergunta */
.modal-pergunta {
    display: none; /* Oculta o modal por padrão */
    position: fixed;
    z-index: 1000; /* Garante que o modal fique acima de outros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
}

.modal-content-pergunta {
    background-color: var(--color-text-2);
    margin: 15% auto;
    padding: 30px;
    border: none;
    width: 80%;
    color: var(--color-text-1);
    height: 100;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.fechar-pergunta {
    color: var(--color-text-1);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.4s ease;
}

.fechar-pergunta:hover,
.fechar-pergunta:focus {
    color: #ffffff79;
    text-decoration: none;
}

.modal-pergunta p {
    font-size: 16px;
    margin-bottom: 20px;
}

#modalPerguntaBotoes {
    text-align: center; /* Centraliza os botões */
}

#modalPerguntaBotoes button {
    background: transparent; /* Cor do fundo dos botões */
    color: var(--color-buttom-terciary); /* Cor do texto dos botões */
    border: 2px solid var(--color-buttom-terciary);
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.4s ease, color 0.4s ease; /* Efeito de transição na cor de fundo */
}

#modalPerguntaBotoes button:hover {
    color: var(--color-text-2);
    background-color: var(--color-buttom-terciary); /* Cor do fundo dos botões ao passar o mouse */
}

@media only screen and (max-width: 768px) {
    .manga_card_main {
        align-items: center;
        display: flex;
        position: relative;
        justify-content: center;
        display: flex;
        gap: 3rem;
        flex-wrap: wrap;
    }
    .msg-inform-souso{
        margin: auto;
    }
    .conteudo {
        height: 90%;
        position: absolute;
        top: 23%;
    }
    .container-fazer-login{
        display: flex;
        flex-direction: column;
    }
    header {
        background-color: var(---color-black);
        color: #fff;
        padding: 20px 0;
        text-align: center;
        padding: 20px;
        transition: all 0.3s ease;
        position: fixed;
        right: 0;
        top: 0;
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        left: 0;
        z-index: 1000;
        gap: 10px;
    }
    .msg-inform-souso h1 {
        color: white;
        font-weight: 800;
        font-size: 24px;
    }
    body::before{
        display: none;
    }
    body{
        font: 300 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif !important;
        color: var(---color-white);
        transition: background-color 1s, color 0.3s;
        box-sizing: border-box;
        overflow: auto;
    }
    header nav ul li {
        display: inline;
        margin: 0 7px;
    }
    header nav ul {
        display: flex;
        margin-left: 0;
        justify-content: space-between;
        flex-flow: wrap;
        font-size: 14px;
        margin-top: 1rem;
        margin-right: 0;
        white-space: normal;
        list-style: none;
        list-style-position: initial;
        list-style-image: initial;
        list-style-type: none;
        padding: 0;
    }
    .nav-souso-2-component-pesquisa-campo {
        font: 300 16px '__poppins_f68cdc', '__poppins_Fallback_f68cdc', Arial, sans-serif;
        color: white;
        height: 20px;
        outline: none;
        width: 250px;
        text-align: start;
        padding: 12px;
        border: none;
        background: #000000b0;
    }
    #site-header h1{
        font-size: 18px;
    }

}
.souso-cadatro{
    text-align: center !important;
    cursor: pointer;
    color: white;
    font-family: sans-serif;
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
    .titulo-capitulo{
        margin-right: 5px;
        max-width: 20rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    header nav ul {
        display: flex;
        margin-left: 0;
        justify-content: end;
        flex-flow: wrap;
        font-size: 14px;
        margin-top: 1rem;
        margin-right: 0;
        white-space: normal;
        gap: 5px;
        list-style: none;
        list-style-position: initial;
        list-style-image: initial;
        list-style-type: none;
        padding: 0;
    }
    .conteudo, .div-souso-3-barra-lateral, .nav-souso-1{
        right: auto;
        left: auto;
    }
    header{
        flex-direction: row;
    }

    #site-header h1 a{
        text-decoration: none;
        white-space: nowrap;
        color: inherit;
    }
    /* Estilos específicos para o modo paisagem */
    #site-header h1{
        font-size: 18px;
    }
    .souso-div-form{
        background: rgba(0, 0, 0, 0.644);
        margin-top: 0;
    }
    .delete-button-pc{
      display: none;
    }
    .container-fazer-login {
        margin-top: 1%;
        display: flex;
        top: 30%;
        height: auto;
        position: relative;
        border-radius: 5px;
        justify-content: space-between;
        background: rgba(30, 30, 30, 0);
        align-items: center;
        padding: 20px; /* Adiciona um pouco de espaçamento */
        box-sizing: border-box;
    }

    .souso-div-form{
        max-width: 100% !important;
    }
    .btn-retorno{
        position: absolute;
        font-size: 15px;
        white-space: nowrap;
        width: 100%;
        top: 115%;
        text-align: center;
    }
    .delete-button {
        position: absolute;
        display: none;
        height: 90%;
        width: 15%;
        text-align: center;
        right: -125px;
        top: 50%;
        transform: translateY(-50%);
        background: #ff0d23eb;
        color: white;
        padding: 10px;
        border-radius: 5px;
    }

    .info-button-deleta{
        display: none;
    }
}



















