

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;}


@font-face {
    font-family: 'Chloe';
    src: url('../fonts/Chloe-Regular.woff2') format('woff2'),
        url('../fonts/Chloe-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root {
  /* ===== Colors ===== */
  --body-color: #fafafa;
  --sidebar-color: #fff;
  --primary-color: #695cfe;
  --primary-color-light: #f6f5ff;
  --toggle-color: #ddd;
  --text-color: #707070;
  --c-bg4: 182, 182, 183;
--c-bg1: #f9f3f2; /* MUDAR */
  --bg-hist: #fff;
  --theme1: #000;
--roxo1: #d54f99; /* MUDAR */
--roxo2:#d54f99; /* MUDAR */
  --c-acc1: #d54f99; /* MUDAR */
--link-2:#f29d59; /* MUDAR */
--text2:#333;
--bg-2:#fff7f9;
--rosa2: #ca92eb; /* MUDAR */
--btn:#f8f9fa;
--form1:#fff;
--text-p:#000;



body.dark {
  --body-color: #18191a;
  --sidebar-color: #491C4C;
  --primary-color: #3a3b3c;
  --primary-color-light: #841e29; /* MUDAR */

  --toggle-color: #fff;
  --text-color: #F1F1F3;
  --text2: #F1F1F3;
  --bg-hist: #242526;
  --c-bg4: #000;
    --c-bg1: #57312b; /* MUDAR */
  --theme1: #fff;
--roxo1: #a01b29; /* MUDAR */
--roxo2:#841e29; /* MUDAR */
    --c-acc1: #d54f99; /* MUDAR */
--link-2:#f29d59; /* MUDAR */
--text2:#fafafa;
--bg-2:#8f2d63; /* MUDAR */
--rosa2: #ca92eb; /* MUDAR */
--btn:#18191a;
--form1:#3b3c3e;
--text-p:#fff;
}





  /* ====== Transition ====== */
  --tran-03: all 0.2s ease;
  --tran-03: all 0.3s ease;
  --tran-04: all 0.3s ease;
  --tran-05: all 0.3s ease;
}



body {
  min-height: 100vh;
  background-color: var(--body-color);
  transition: var(--tran-05);
scrollbar-width: thin;
font-family: "Open Sans";
}



::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}




::selection {
  background-color: var(--roxo1);
  color: #fff;
}





abbr {
  position: relative;
  cursor: help;
  text-decoration: underline dotted;
}

abbr:hover::after {
  content: attr(data-title); /* pega do data-title */
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  
  background: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.2);

  width: 250px;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;

  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  pointer-events: none;
  z-index: 999;
  opacity: 1;
}

abbr:hover::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #333 transparent;
}





.capa1 {width: 100%;
height: auto; /* Mantém a proporção da imagem */
    object-fit: cover; /* Cobre o espaço sem distorcer */}

.capa1-500 {
    width: 500px; /* Mantém o tamanho original */
}

.capa1-1202 {
    width: 100%; /* Exibe 100% do width da página */
}











/* Contêiner dos selos */
.selos-historia {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px; /* espaço entre os dois selos */
    z-index: 10;
}

/* Cada selo individual */
.selo-historia {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.selo-historia:hover {
    opacity: 1;
}

/* Ajuste de tamanho */
.selo-historia img {
    width: 70px; /* ajuste conforme o visual */
    height: auto;
    border-radius: 8px;
}

/* Garante que o selo fique sobre a capa */
.historia-capa {
    position: relative;
}







.titulo{font-family: "League Spartan";
font-size: 48px;
text-align: center;}



.versalete{font-variant: small-caps;
text-indent:0;
font-size: 18px;
}


.capitular1 {
    font-size: 6em;
    font-weight: bold;
    float: left;
    margin-right: 0.1em;
    line-height: 1;
}

h3{font-size: 28px;}






/* TOOLTIPS */

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

.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: var(--theme1);
    color: var(--bg-hist);
    text-align: center;
    padding: 5px;
    border-radius: 5px;

    /* Posição do tooltip */
    position: absolute;
    z-index: 1;
    bottom: 100%; /* Acima da área */
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Mostra o tooltip quando o mouse estiver em qualquer parte da área */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}




.disabled {
    opacity: 0.5; /* Tornar o item visualmente desabilitado */
    pointer-events: none; /* Impede qualquer interação com o elemento */
}

.disabled .toggle-switch {
    background-color: #ccc; /* Cor de fundo para indicar que está desabilitado */
}




/* Lightbox (modal) styles */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      justify-content: center;
      align-items: center;
font-family: "Open Sans";
    }

    .lightbox-content {
      background-color: var(--form1);
      padding: 20px;
      border-radius: 5px;
      width: 40%;
      max-width: 80%;
font-family: "Open Sans";
color: var(--text2);
max-height: 500px;
overflow-y:scroll;
    }

    .close-btn {
      float: right;
      font-size: 24px;
      cursor: pointer;
    }


/* LIGHTBOX PROJETOS */

/* Estilo do Lightbox */
.lightbox1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Cor de fundo escura */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Estilo do conteúdo dentro do lightbox */
.lightbox-conteudo1 {
    background: var(--c-bg1);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-height: 80%;
    overflow-y: auto;
}

/* Estilo do conteúdo de texto dentro do lightbox */
.texto-lightbox1 {
    font-family: Arial, sans-serif;
}

/* Botão para fechar */
.fechar1 {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    color: black;
    cursor: pointer;
}


/* LIGHTBOX COMENTÁRIOS */

.lightbox5 {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox5-content {
    background: white;
    margin: 5% auto;
    padding: 20px;
    width: 50%;
    height: 70vh; /* Define a altura do Lightbox */
    max-height: 90vh; /* Evita que ele ultrapasse a tela */
    border-radius: 8px;
    position: relative;
    text-align: left;
    overflow-y: auto; /* Ativa a rolagem vertical */
}

/* Ajuste a lista de comentários para ter rolagem */
#comments-list {
    max-height: 60vh; /* Define uma altura máxima */
    overflow-y: auto; /* Habilita a barra de rolagem dentro da lista */
    padding-right: 10px; /* Espaço para evitar esconder a rolagem */
}

/* Melhorar a aparência da barra de rolagem (opcional) */
#comments-list::-webkit-scrollbar {
    width: 6px;
}

#comments-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#comments-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
}

#comments-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.lightbox5-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}




/* COLUNAS 1 */

.columns {
  display: flex;
}

.column {
  flex: 1;
padding: 2em;
}



/* BUTTONS e INPUTS */

.button-51 {
  background-color: transparent;
  border: 1px solid var(--roxo1);
  box-sizing: border-box;
  color: var(--theme1);
  font-family: "Avenir Next LT W01 Bold",sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 16px 23px;
  position: relative;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-51:hover,
.button-51:active {
  outline: 0;
}

.button-51:hover {
  background-color: transparent;
  cursor: pointer;
}

.button-51:before {
  background-color: var(--rosa2);
  content: "";
  height: calc(100% + 3px);
  position: absolute;
  right: -7px;
  top: -9px;
  transition: background-color 300ms ease-in;
  width: 100%;
  z-index: -1;
}

.button-51:hover:before {
  background-color: var(--roxo1);
}



input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid var(--btn);
  border-radius: 4px;
  box-sizing: border-box;
font-family: "Open Sans";
background-color: var(--bg-hist);
color: var(--text2);
}


.button2 {
  background-color: var(--btn);
  border: 1px solid var(--btn);
  border-radius: 4px;
  color: var(--text2);
  cursor: pointer;
  font-size: 14px;
  height: 36px;
  line-height: 27px;
  min-width: 54px;
  padding: 0 16px;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: pre;
font-family: "Open Sans";

}

.button2:hover {
 border-color: #dadce0;
  box-shadow: rgba(0, 0, 0, .1) 0 1px 1px;
  color: var(--text2);
}

/*
input[type=submit] {
  width: 100%;
  background-color: #4CAF50;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
font-family: "Open Sans";

}

input[type=submit]:hover {
  background-color: #45a049;
}
*/




/* EXTRAS */


.lightbox7 {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        .lightbox7-conteudo {
            background-color: var(--bg-2);
            padding: 25px;
            border-radius: 16px;
            max-width: 900px;
            width: 50%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
	    font-family: 'Open Sans';
	    line-height: 200%;
            box-shadow: 0 4px 20px rgba(0,0,0,0.4);
        }
        .fechar-lightbox7 {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 26px;
            cursor: pointer;
        }
        .botao-extras {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background: #222;
            color: #fff;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .botao-extras:hover {
            background: #444;
        }
        .extras-conteudo img {
            margin: 25px 0 10px 0;
        }


.extras-pop {
    position: fixed;
    top: 85px;
    right: 20px;

    background:  var(--bg-2);
    color: var(--text-p);

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    font-weight: bold;

    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);

    z-index: 99999;
    cursor: pointer;
}

/* Responsivo (centraliza no mobile se quiser, opcional) */
@media (max-width: 600px) {
    .extras-pop {
        top: 55px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}



.tit1 {width:auto;}


/* CARDS QUOTES */

.quote-cute {
    background: var(--bg-hist);
    border: 0px solid #eee;
    padding: 28px 20px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    margin: 25px 0;
    position: relative;
}

.quote-cute::before {
    content: "✨ quote";
    position: absolute;
    top: -14px;
    left: 15px;
    background: var(--rosa2);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: .8rem;
    box-shadow: 0 3px 6px rgba(0,0,0,.1);
}

.quote-cute p {
    margin: 0;
    font-size: 1rem;
    line-height: 200%;
}



.quotes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 25px 0;
}

/* Responsivo: 1 por linha */
@media (max-width: 600px) {
    .quotes-grid {
        grid-template-columns: 1fr;
    }
}



/* CARDS CURIOSIDADE */

.curiosidade-polaroid {
    background: var(--bg-hist);
    padding: 28px 18px 18px; /* Aumentei o padding-top aqui */
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
    border: 0px solid #ececec;
    margin-bottom: 22px;
    position: relative;
}

.curiosidade-tag {color:var(--form1);
    position: absolute;
    top: -10px;
    left: 12px;
    background: var(--roxo2);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: .75rem;
    box-shadow: 0 3px 8px rgba(0,0,0,.1);
}

.curiosidade-polaroid p {
    margin: 0;
    font-size: .95rem;
    line-height: 200%;
}



/* DREAMCAST */
/* GRID RESPONSIVO PARA QUALQUER NÚMERO DE CARDS */
.dreamcast-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* CARD BASE */
.dreamcast-card {
    background: var(--bg-hist);
    border-radius: 18px;
    padding: 15px;
    box-shadow: 0 5px 14px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.dreamcast-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* IMAGEM */
.dreamcast-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 12px;
}

/* ÁREA DE TEXTO — 100% FLEXÍVEL */
.dc-info h3 {color: var(--roxo1);
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.dc-info p,
.dc-info li,
.dc-info blockquote {
    font-size: .95rem;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 6px;
}

/* listas */
.dc-info ul {
    padding-left: 18px;
    margin: 10px 0;
}

/* quote */
.dc-info blockquote {
    margin: 10px 0 0;
    padding-left: 12px;
    border-left: 3px solid #dcdcdc;
    font-style: italic;
    opacity: .9;
}

/* RESPONSIVO */
@media (max-width: 480px) {
    .dreamcast-container {
        grid-template-columns: 1fr; /* Só UMA coluna */
        gap: 18px;
    }

    .dreamcast-card {
        padding: 14px;
    }

    .dc-info h3 {
        font-size: 1rem;
    }

.tit1 {width:100%;}


}





/* PERFIL */

.author-profile2 li a {
  display: flex; /* Mantém os ícones e textos alinhados horizontalmente */
  align-items: center; /* Centraliza verticalmente os itens no link */
  width: 100%; /* O link ocupará toda a largura disponível */
  padding: 10px; /* Adiciona um espaçamento interno para o link */
  box-sizing: border-box; /* Garante que o padding não afete a largura */
}

.author-profile2 li a .icon {
  margin-right: 10px; /* Espaçamento entre o ícone e o texto */
}

.author-profile2 li a .text {
  white-space: normal; /* Impede que o texto quebre em várias linhas */
}



.authors-wrapper {
  display: block;   /* cada autor embaixo do outro */
  width: 100%;
}

.author-profile {width: 100%;
    display: flex;
    align-items: center; /* Alinha os itens ao centro verticalmente */
    background-color: var(--bg-2); /* Cor de fundo do box */
    border: 0px solid #ddd; /* Borda do box */
    border-radius: 8px; /* Cantos arredondados */
    padding: 15px; /* Espaçamento interno */
    margin: 10px 0; /* Margem externa */
}

.author-avatar {
    width: 80px; /* Tamanho da imagem do avatar */
    height: 80px; /* Tamanho da imagem do avatar */
    margin-right: 15px; /* Espaçamento à direita da foto */
    overflow: hidden; /* Garante que a imagem não saia da div */
    border-radius: 50%; /* Faz a imagem ficar redonda */
object-fit: cover;
}

.author-avatar img {
    width: 100%; /* Faz a imagem ocupar toda a div do avatar */
    height: auto; /* Mantém a proporção da imagem */
    display: block; /* Remove espaço extra abaixo da imagem */
}

.author-details {
    flex: 1; /* Faz a seção de detalhes ocupar o espaço restante */
}

.author-name {
    font-size: 18px; /* Tamanho do nome */
    margin: 0; /* Remove margens padrão */
    line-height: 1; /* Define a altura da linha para melhor alinhamento */
}

.author-description {
    font-size: 14px; /* Tamanho da descrição */
    color: #555; /* Cor da descrição */
    margin: 5px 0; /* Margens para a descrição */
}

.author-social-links {
border-bottom: 0px solid rgb(var(--c-acc1));
  display: flex; /* Coloca os ícones sociais lado a lado */
  gap: 10px; /* Espaçamento entre os ícones */
  margin-top: 10px; /* Espaçamento acima dos ícones sociais */
}

.author-social-links a {border-bottom: 0px solid rgb(var(--c-acc1));
  color: var(--roxo1); /* Define a cor dos ícones sociais */
  font-size: 18px; /* Ajusta o tamanho dos ícones */
  transition: color 0.3s ease; /* Adiciona uma transição suave ao passar o mouse */
}

.author-social-links a:hover {background-color:none;
  color: var(--secondary-color); /* Muda a cor dos ícones ao passar o mouse */
}






/* NAVEGAÇÃO CAPÍTULOS */


.chapter-button {
    display: inline-block;
    padding: 5px 10px;
    margin: 5px;
    background-color: var(--c-acc1);
    color: var(--text2);
    text-decoration: none;
    border-bottom: 0px solid rgb(var(--c-acc1));
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s;
    font-family: "Open Sans";
}

.chapter-button:hover {
    background-color: var(--rosa2); /* Azul mais escuro no hover */
    color: #fff;
border-bottom: 0px solid rgb(var(--c-acc1));
}

.chapter-button:active {
    background-color: var(--roxo2); /* Azul mais escuro quando clicado */
}

.current-chapter {
    color: var(--text2); /* Cor destacada para o capítulo atual */
    font-weight: bold; /* Deixe o texto em negrito */
    background: var(--rosa2);
 /* Cor de fundo para destacar ainda mais */
}

.current-chapter:hover {
    color: var(--text2); /* Cor destacada para o capítulo atual */
}





.navegacao-capitulos {
    margin: 20px 0;
    text-align: center;
}

.navegacao-capitulos a {
    margin: 0 15px;
    text-decoration: none;
    color: #0073aa; /* Cor padrão do WordPress */
}

.navegacao-capitulos a:hover {
    text-decoration: underline;
}









/* SWIPER CAPAS VIP */

/* SWIPER CAPAS VIP */

/* SWIPER CAPAS VIP */

/* Imagens específicas por classe */
.capa1-500,
.width-500 {
    width: 500px !important;
    height: 300px;
    object-fit: cover;
}

.capa1-1202,
.width-full {
    width: 100% !important;
    height: auto;
    object-fit: contain !important;
}


/* Estilos gerais para qualquer slide sem classe específica */
.swiper-slide img {
    display: block;
    width: 100%;
    height: auto !important;
    object-fit: contain; /* garante imagem SEM cortes */
}

/* Container do Swiper */
.swiper {
    position: relative;
    height: auto !important;  /* altura do maior slide */
}

/* Paginação flutuando sobre a imagem */
.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

/* GIFs animados — mantém inteiros */
.swiper-slide img[src$=".gif"] {
    object-fit: contain !important;
    height: auto !important;
}

/* Remove alturas automáticas exageradas do Swiper */
.swiper,
.swiper-wrapper,
.swiper-slide {
    height: auto !important;
}

/* Remove qualquer sobra vertical */
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
}


/* Responsividade — telas pequenas */
@media (max-width: 768px) {
    .capa1-500,
    .width-500,
    .capa1-1202,
    .width-full,
.swiper-initialized,
.swiper-backface-hidden,
.swiper-wrapper,
    .swiper-slide img {
        width: 100% !important;
        height: auto !important;
    }
}





/* ===== Sidebar ===== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 350px;
  padding: 10px 14px;
  background: var(--c-bg1);
  transition: var(--tran-05);
  z-index: 100;
/*overflow: hidden;*/
font-family: "Open Sans";
color: var(--theme1);
}
.sidebar.close {
  width: 88px;
}


.bgbranco{background: var(--sidebar-color);
padding: 5px;
box-sizing: border-box;
border-radius: 1.3rem;
}

.wpd-comment-text p{color: var(--text-color);}

.brancosimples{background: var(--sidebar-color);
padding: 1px;
box-sizing: border-box;
margin-top: 2em;
}

/* ===== Reusable code - Here ===== */
.sidebar li {
  height: auto;
  list-style: none;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.sidebar header .image,
.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
}

.sidebar .icon {
  min-width: 60px;
  border-radius: 6px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sidebar .icon2 {
  min-width: 60px;
  border-radius: 6px;
  height: 100%;
  display: flex;
  align-items: initial;
  justify-content: center;
  font-size: 20px;
color: var(--text-color);
}

.sidebar .text,
.sidebar .icon {
  color: var(--text-color);
  transition: var(--tran-03);
}

.sidebar .text {
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 1;
}
.sidebar.close .text {
  opacity: 0;
}
/* =========================== */

.sidebar header {
  position: relative;
}

.sidebar header .image-text {
  display: flex;
  align-items: center;
}
.sidebar header .logo-text {
  display: flex;
  flex-direction: column;
}
header .image-text .name {
  margin-top: 2px;
  font-size: 18px;
  font-weight: 600;
}

header .image-text .profession {
  font-size: 16px;
  margin-top: -2px;
  display: block;
}

.sidebar header .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar header .image img {
  width: 40px;
  border-radius: 6px;
}

.sidebar header .toggle {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%) rotate(180deg);
  height: 25px;
  width: 25px;
  background-color: var(--roxo1);
  color: var(--sidebar-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: var(--tran-05);
}

body.dark .sidebar header .toggle {
  color: var(--text-color);
}

.sidebar.close .toggle {
  transform: translateY(-50%) rotate(0deg);
}

.sidebar .menu {
  margin-top: 40px;
}



.sidebar li a {
  list-style: none;
  height: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  height: 100%;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--tran-03);
}

.sidebar li a:hover {
  background-color: none;
}
.sidebar li a:hover .icon,
.sidebar li a:hover .text {
  color: var(--sidebar-color);
}
body.dark .sidebar li a:hover .icon,
body.dark .sidebar li a:hover .text {white-space: nowrap; /* Impede que o texto quebre em várias linhas */
  color: var(--text-color);
}


.sidebar .menu-bar {
  height: calc(100% - 55px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
}
.menu-bar::-webkit-scrollbar {
  display: none;
}
.sidebar .menu-bar .mode {
  border-radius: 6px;
  background-color: var(--primary-color-light);
  position: relative;
  transition: var(--tran-05);
}

.menu-bar .mode .sun-moon {
  height: 50px;
  width: 60px;
}

.mode .sun-moon i {
  position: absolute;
}
.mode .sun-moon i.sun {
  opacity: 0;
}
body.dark .mode .sun-moon i.sun {
  opacity: 1;
}
body.dark .mode .sun-moon i.moon {
  opacity: 0;
}

.menu-bar .bottom-content .toggle-switch {
  position: absolute;
  right: 0;
  /*height: 100%;*/
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
}
.toggle-switch .switch {
  position: relative;
  height: 22px;
  width: 40px;
  border-radius: 25px;
  background-color: var(--toggle-color);
  transition: var(--tran-05);
}

.switch::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  background-color: var(--sidebar-color);
  transition: var(--tran-04);
}

body.dark .switch::before {
  left: 20px;
}

.home {
  position: absolute;
  top: 0;
  top: 0;
  left: 350px;
  height: 100vh;
  width: calc(100% - 350px);
  background-color: var(--body-color);
  transition: var(--tran-05);
}

.home .text {margin: 10px auto;
width:80%;
}

.home .text h1{
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color);
/*  padding: 12px 60px;*/
text-align:center;
}

.historia {background: var(--bg-hist);
font-size: 16px;
font-family:"Spectral";
line-height: 200%;
border-radius: 10px;
box-shadow: 0 0 10px rgb(var(--c-bg4));
text-align: justify;
  color: var(--text-color);
padding: 12px 60px;
}

p{margin-top: 2em;
margin-bottom: 2em;
}


.font-options button {
    margin-left: 5px; /* Espaço entre os botões */
    font-size: 16px; /* Tamanho do texto dos botões */
    padding: 5px 10px; /* Espaçamento interno dos botões */
}



/* Definições de estilo para as diferentes fontes */
.font1 {
            font-family: 'Open Sans', sans-serif; /* Alterar para a fonte desejada */
        }
        .font2 {
            font-family: 'Courier New', monospace; /* Alterar para a fonte desejada */
        }
        .font3 {
            font-family: 'Arimo', serif; /* Alterar para a fonte desejada */
        }




.sidebar.close ~ .home {
  left: 78px;
  height: 100vh;
  width: calc(100% - 78px);
}
body.dark .home .text {
  color: var(--text-color);
}

#footer{margin-top: 5rem;
}

#conteudo{background: transparent;
}






/* Core styles/functionality */
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab__content {
  max-height: 0;
  overflow: auto;
  transition: all 0.35s;
}
.tab input:checked ~ .tab__content {
  max-height: 10rem;
}

/* Visual styles */
.accordion {
  color: var(--theme1);
  border-radius: 0.5rem;
  overflow: hidden;
margin-top: 10px;
}
.tab__label,
.tab__close {
  display: flex;
  color: var(--theme1);
  background: ;
  cursor: pointer;
}
.tab__label {
  justify-content: space-between;
  /*padding: 1rem;*/
margin-top: 1rem;
}
.tab__label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
}
.tab input:checked + .tab__label::after {
  transform: rotate(270deg);
 width: 1em;
}
.tab__content p {
  margin: 0;
  padding: 1rem;
font-size:0.75rem;
}
.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.accordion--radio {
  --theme: var(--secondary);
}

/* Arrow animation 
.tab input:not(:checked) + .tab__label:hover::after {
  animation: bounce .5s infinite;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-.25rem);
  }
}
*/




/* TEXTOS */

.titulo{font-family:'League Spartan';
text-transform: uppercase;
text-align:center;
font-size: 62px;
}





a {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: var(--link-2);
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--c-acc1);
    padding-bottom: 2px;


}

a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background-color: var(--link-2);
    transition: width 0.3s ease, left 0.3s ease;
}

a:hover::before {
    width: 100%;
    left: 0;
}

a:hover{color: var(--c-acc1);}



/* IMAGENS */

.projeto-img{width: 70%;
border-radius: 10%;
border: 10px double;
}



/* LIGHTBOX 2 SONGFICS */

/* Estilo do Lightbox */
.lightbox1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Cor de fundo escura */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Estilo do conteúdo dentro do lightbox */
.lightbox1-conteudo {
    background: var(--c-bg1);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-height: 80%;
    overflow-y: auto;
}

/* Estilo do conteúdo de texto dentro do lightbox */
.texto-lightbox1 {
    font-family: Arial, sans-serif;
}

/* Botão para fechar */
.fechar {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    color: black;
    cursor: pointer;
}



em, i, strong, b {color: var(--text-p);}


h2{font-family:'League Spartan';
text-transform: uppercase;
color: var(--c-acc1);
font-size: 45px;
line-height:200%;}

.titulos1{font-family:'League Spartan';
text-transform: uppercase;
text-align:center;
font-size: 42px;
}

.titulos2{font-family:'Spectral';
text-align:center;
font-size: 32px;
}



hr {
    border: none;
    height: 5px; /* Espessura da linha */
    background: linear-gradient(to right, #a01b29 50%, #cf858d 50%); /* Gradiente com duas cores */
    margin: 20px 0;
}







/* mobile */
@media only screen and (max-width: 450px ) {
.sidebar {
  width: 80%;
}
.sidebar.close {
  width: 0px;
}


.sidebar header .toggle {
  right: -35px;
  transform: translateY(-50%) rotate(180deg);
}


.sidebar.close ~ .home {
  left: 1px;
  height: 100vh;
  width: calc(100% - 1px);
}

.sidebar .icon {
  min-width: 40px;
  border-radius: 6px;
  font-size: 25px;
}

.home {
  left: 265px;
  width: calc(100% - 260px);
}

.historia{width: 100%;
padding: 12px;
text-align: left;
font-size: 20px;}

p{margin-top: 0.1em;
margin-bottom: 0.1em;
padding: 12px;
}

}
