@charset "UTF-8";
.v3-nav {
  --nav-bg: #1a1a2e;
  --nav-bg-alpha: rgba(26, 26, 46, 0.97);
  --nav-text: rgba(255, 255, 255, 0.85);
  --nav-text-hover: #fff;
  --nav-accent: #c9a96e;
  --nav-accent-hover: #dfc08a;
  --nav-border: rgba(255, 255, 255, 0.08);
  --nav-radius: 8px;
  --nav-height: 56px;
  --nav-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--nav-height);
  background: var(--nav-bg-alpha);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-border);
  font-family: var(--nav-font);
  font-size: 14px;
  box-sizing: border-box;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.v3-nav .nav-logo {
  display: flex;
  align-items: center;
  padding-left: 12px;
  height: 100%;
}

.v3-nav .nav-logo img {
  display: block;
  height: 36px;
  width: auto;
  opacity: .9;
  transition: opacity .2s;
}

.v3-nav .nav-logo:hover img {
  opacity: 1;
}

.v3-nav .nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 2px;
  height: 100%;
}

.v3-nav .nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--nav-text);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--nav-radius);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color .2s, background .2s;
}

.v3-nav .nav-menu > li > a:hover {
  color: var(--nav-text-hover);
  background: rgba(255, 255, 255, 0.06);
}

.v3-nav .nav-menu > li > a .chevron {
  opacity: .5;
  transition: transform .2s, opacity .2s;
}

.v3-nav .nav-menu > li:hover > a .chevron {
  transform: rotate(180deg);
  opacity: .8;
}

.v3-nav .has-submenu {
  position: relative;
}

.v3-nav .nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--nav-bg);
  border: 1px solid var(--nav-border);
  border-radius: var(--nav-radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .2s, transform .2s;
  z-index: 20;
}

.v3-nav .has-submenu:hover > .nav-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.v3-nav .nav-dropdown li a {
  display: block;
  color: var(--nav-text);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 400;
  transition: color .15s, background .15s;
}

.v3-nav .nav-dropdown li a:hover {
  color: var(--nav-text-hover);
  background: rgba(255, 255, 255, 0.08);
}

.v3-nav .nav-publique > a {
  color: var(--nav-bg) !important;
  background: var(--nav-accent) !important;
  font-weight: 600 !important;
  padding: 7px 14px !important;
  gap: 6px;
}

.v3-nav .nav-publique > a:hover {
  background: var(--nav-accent-hover) !important;
}

.v3-nav .nav-publique svg {
  position: relative;
  top: -1px;
}

.v3-nav .nav-search {
  display: flex;
  align-items: center;
}

.v3-nav .nav-search-icon {
  display: none !important;
  color: var(--nav-text);
  padding: 6px;
}

.v3-nav .nav-search-form input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  border-radius: 20px;
  color: #fff;
  padding: 6px 14px;
  font-family: var(--nav-font);
  font-size: 13px;
  outline: none;
  transition: background .2s, border-color .2s, width .3s;
  width: 160px;
}

.v3-nav .nav-search-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.v3-nav .nav-search-form input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
  width: 200px;
}

.v3-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px 0 0;
  height: 100%;
  flex-shrink: 0;
  grid-column: 3;
}

.v3-nav .nav-cta {
  display: none;
  align-items: center;
  gap: 6px;
}

body.cdc-not-authenticated .v3-nav .nav-cta {
  display: flex !important;
}

.v3-nav .btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--nav-radius);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  border: none;
  white-space: nowrap;
}

.v3-nav .btn-ghost {
  color: var(--nav-text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.v3-nav .btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.v3-nav .btn-primary {
  color: var(--nav-bg);
  background: var(--nav-accent);
}

.v3-nav .btn-primary:hover {
  background: var(--nav-accent-hover);
}

.v3-nav .nav-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--nav-text);
  border-radius: 50%;
  text-decoration: none;
  transition: color .2s, background .2s;
}

.v3-nav .nav-icon:hover {
  color: var(--nav-text-hover);
  background: rgba(255, 255, 255, 0.08);
}

body.cdc-authenticated .v3-nav .nav-icon.cdc-authenticated {
  display: inline-flex !important;
}

.v3-nav .nav-notificacoes {
  position: relative;
}

.v3-nav .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  border: 2px solid var(--nav-bg);
  font-size: 0;
}

.v3-nav .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--nav-radius);
  transition: background .2s;
}

.v3-nav .nav-hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.v3-nav .nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--nav-text);
  border-radius: 1px;
  transition: transform .3s, opacity .3s;
}

.v3-nav.scroll-up {
  transform: translateY(0);
}

.v3-nav.scroll-down {
  transform: translateY(-100%);
}

.v3-nav .nav-notifications-panel {
  display: none;
}

.v3-nav .nav-notifications-panel.visivel {
  display: block;
  position: fixed;
  right: 12px;
  top: calc(var(--nav-height) + 8px);
  width: 340px;
  min-height: 200px;
  background: var(--nav-bg);
  border: 1px solid var(--nav-border);
  border-radius: var(--nav-radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
  .v3-nav .nav-search-form input {
    display: none;
  }
  .v3-nav .nav-search-icon {
    display: inline-flex !important;
  }
}

@media (max-width: 1000px) {
  .v3-nav {
    height: var(--nav-height);
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .v3-nav .nav-menu {
    display: none;
  }
  .v3-nav .nav-menu.visivel {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    padding: 12px 16px;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top: 1px solid var(--nav-border);
    animation: slideDown .25s ease;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .v3-nav .nav-menu.visivel > li {
    width: 100%;
  }
  .v3-nav .nav-menu.visivel > li > a {
    padding: 12px;
    font-size: 15px;
    border-radius: var(--nav-radius);
    width: 100%;
    box-sizing: border-box;
  }
  .v3-nav .has-submenu > .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--nav-radius);
    padding: 0 0 0 16px;
    opacity: 1;
    transform: none;
    width: 100%;
    box-sizing: border-box;
  }
  .v3-nav .nav-menu > li:hover > .nav-dropdown {
    display: none;
  }
  .v3-nav ul.submenu-invisivel-mobile {
    display: none !important;
  }
  .v3-nav .nav-dropdown:not(.submenu-invisivel-mobile) {
    display: block !important;
  }
  .v3-nav .nav-dropdown li a {
    padding: 10px 12px;
    font-size: 14px;
  }
  .v3-nav .nav-search {
    width: 100%;
  }
  .v3-nav .nav-search-form {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .v3-nav .nav-search-form input {
    display: block;
    width: 100%;
    margin: 8px 0;
    box-sizing: border-box;
  }
  .v3-nav .nav-search-icon {
    display: none;
  }
  .v3-nav .nav-hamburger {
    display: flex;
    flex-shrink: 0;
  }
  .v3-nav .nav-cta {
    display: none;
  }
  body.cdc-not-authenticated .v3-nav .nav-cta {
    display: flex !important;
    flex-direction: row;
    gap: 6px;
  }
  body.cdc-not-authenticated .v3-nav .btn {
    justify-content: center;
    padding: 6px 14px;
    font-size: 13px;
  }
  .v3-nav ul a.submenu-expandable {
    pointer-events: auto;
  }
  .v3-nav ul a.submenu-expandable::after {
    content: "";
  }
  .v3-nav .nav-publique > a {
    justify-content: center;
    padding: 10px 16px !important;
    font-size: 15px !important;
  }
  #notificacoes.visivel {
    right: 8px;
    left: 8px;
    width: auto;
    top: calc(var(--nav-height) + 8px);
  }
}

#notificacoes {
  display: none;
}

#notificacoes.visivel {
  display: block;
  position: fixed;
  right: 12px;
  top: 64px;
  min-width: 100px;
  min-height: 250px;
  border: solid 4px var(--nav-bg, #1a1a2e);
  background-color: white;
  border-radius: var(--nav-radius, 8px);
  padding: 3px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

main.blog {
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

main.blog .tufos-iframe {
  background: black;
}

section.blog-posts h2 {
  margin-bottom: 0;
}

article.blog > header, section.blog-posts > header {
  padding-top: 4vh;
  padding-bottom: 1vh;
  background-image: linear-gradient(90deg, black 21px, transparent 1%), linear-gradient(black 21px, #ccc);
  background-size: 22px 22px;
  color: white;
  font-family: 'Noto Serif', 'Georgia', serif;
}

article.blog > header > *, section.blog-posts > header > * {
  padding: 0;
  width: min(100% - 14px, 800px);
  margin: 0 auto;
}

article.blog > header a, article.blog > header a:visited, section.blog-posts > header a, section.blog-posts > header a:visited {
  text-decoration: none;
  color: white;
}

article.blog > header a.blog-link, article.blog > header a:visited.blog-link, section.blog-posts > header a.blog-link, section.blog-posts > header a:visited.blog-link {
  text-decoration: underline;
}

article.blog > div, section.blog-posts > div {
  font-size: large;
  display: block;
  font-family: "Candara", "Tahoma", "Roboto Sans", "sans-serif";
  width: min(100% - 14px, 800px);
  margin: 0 auto;
  padding: 2em 0;
}

article.blog section.comentarios h2, article.blog section.comentarios h3, section.blog-posts section.comentarios h2, section.blog-posts section.comentarios h3 {
  font-family: "Noto Serif", "Georgia", serif;
}

article.blog section.comentarios form, section.blog-posts section.comentarios form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 600px);
}

article.blog section.comentarios form textarea, section.blog-posts section.comentarios form textarea {
  height: 4em;
  width: 100%;
  box-sizing: border-box;
}

article.blog section.comentarios form button, section.blog-posts section.comentarios form button {
  margin-left: auto;
  width: max-content;
}

.comentarios-v2 {
  font-family: "Noto Sans";
  font-size: small;
  word-break: break-word;
}

.comentarios-v2 article {
  padding-left: 1em;
  margin-top: 1em;
}

.comentarios-v2 article header {
  display: grid;
  grid-template-areas: "foto nome" "foto time";
  grid-template-columns: auto 1fr;
  gap: 5px;
}

.comentarios-v2 article a.link-foto {
  grid-area: foto;
}

.comentarios-v2 article a.link-foto img {
  height: 38px;
  width: 38px;
  border-radius: 4px;
  display: block;
}

.comentarios-v2 article .remetente {
  font-weight: bold;
  grid-area: nome;
}

.comentarios-v2 article .remetente a {
  color: black;
}

.comentarios-v2 article .data {
  font-style: italic;
  font-weight: lighter;
  font-size: smaller;
  grid-area: time;
}

.comentarios-v2 article > article {
  border-left: solid 1px #dd3;
  margin-left: .2em;
}

.comentarios-v2 article .acao {
  display: flex;
  gap: .5em;
  align-items: center;
}

.comentarios-v2 article .acao button {
  font-size: x-small;
  font-family: inherit;
}

.comentarios-v2 article .acao button:not(.thumb) {
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 2px 10px;
  color: #444;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.comentarios-v2 article .acao button:not(.thumb):hover {
  border-color: #b8965a;
  color: #333;
}

.comentarios-v2 article .acao button.thumb {
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  font-size: 0;
  width: 16px;
  height: 20px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAACXBIWXMAAC4jAAAuIwF4pT92AAAAzUlEQVQokaXSvUoDQRTF8d/o1tFSg5224gcI6STvYSO+QEobCx/DOpWdllaKSWEdbG2sxWJRwepaZISFZB1wDwxc5pz532HuJC0KtjDABlYb1heuEzVUwSlOsvmBK5zhEGst/G2cQ4VN7GTjE8cYtt0s6yDoJeqVQrBNR7iE/wJgL+h3Aexj1AUA310B6xWecZ83ajyYz3+3cDjwkv5wLzDCb2aM20bkLTErtXgM3vO6WZYpvcFdo176K0uASaN+LWQXFfSCp2Aa87kv6AfZhSoykFAipAAAAABJRU5ErkJggg==");
}

.comentarios-v2 article .acao button.thumb.up {
  transform: scaleY(-1);
  background-position-y: 2px;
  filter: hue-rotate(130deg);
  background-position-y: 4px;
}

.comentarios-v2 article .acao button.thumb.up:focus {
  filter: hue-rotate(130deg) drop-shadow(gray 2px -1px) !important;
}

.comentarios-v2 article .acao button.thumb.down {
  background-position-y: 5px;
}

.comentarios-v2 article .acao button.thumb.down:focus {
  filter: drop-shadow(gray 2px -1px);
}

.comentarios-v2 article form.oculto {
  display: none;
}

.comentarios-v2 h2 {
  padding-left: 0 !important;
  background-color: initial !important;
  font-size: xx-large;
  margin: 0;
}

.comentarios-v2 form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .4em;
  margin-bottom: 1.5em;
}

.comentarios-v2 form textarea {
  max-width: 38em;
  width: 100%;
  height: 5em;
  background-color: #fff;
  border: solid 1px #c9c1ad;
  border-radius: 6px;
  padding: .5em .65em;
  font-family: inherit;
  font-size: 16px;
  box-sizing: border-box;
  resize: vertical;
}

.comentarios-v2 form textarea:focus {
  outline: none;
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(210, 180, 120, 0.3);
}

.comentarios-v2 form label {
  font-weight: normal;
  font-size: .85em;
  color: #555;
}

.comentarios-v2 form button {
  align-self: flex-end;
  margin-top: .3em;
  padding: .45em 1.4em;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.comentarios-v2 form button:hover {
  background: #d2b478;
  color: #333;
}

.comentarios-v2 .proxima-pagina {
  margin-top: 1em;
}

.comentarios-v2 .proxima-pagina a {
  color: black;
  background-color: #e9e9ed;
  border: solid 1px #8f8f9d;
  padding: 3px 12px;
  border-radius: 7px;
}

.cartao-perfil {
  background-color: white;
  border-radius: 16px;
  padding: 8px;
  font-family: 'Noto Sans', 'sans-serif';
  font-size: small;
  display: grid;
  grid-template-areas: "foto nome" "foto bio" "foto info" "foto acao";
  grid-template-columns: auto 1fr;
  grid-gap: 8px;
  overflow: hidden;
  border: solid 6px #e9e9ff;
  /*box-shadow: 3px 3px 5px 1px #00000050;*/
}

.cartao-perfil > * {
  /*border: solid 1px blue;*/
}

.cartao-perfil .nome {
  font-size: x-large;
  font-weight: bold;
  grid-area: nome;
}

.cartao-perfil .foto {
  grid-area: foto;
  width: 64px;
  height: 64px;
  border-radius: 7px;
}

.cartao-perfil .bio {
  grid-area: bio;
}

.cartao-perfil .info {
  grid-area: info;
}

.cartao-perfil .acao {
  grid-area: acao;
}

.cartao-perfil .info, .cartao-perfil .acao {
  display: flex;
  flex-wrap: wrap;
  gap: .3em;
}

.cartao-perfil .info > *, .cartao-perfil .acao > * {
  padding: .4em;
  width: max-content;
}

.cartao-perfil .info > * {
  border: solid 1px #0000ff20;
  font-size: 10px;
}

.cartao-perfil .botao-seguir {
  background-color: #373780;
  font-weight: bold;
  border: solid 2px #373780;
  color: white;
}

.cartao-perfil .botao-seguir a {
  color: white;
}

.cartao-perfil .botao-mensagem {
  background-color: white;
  border: solid 2px #373780;
  font-weight: bold;
}

.cartao-perfil .botao-mensagem a {
  color: #373780;
}

.cartao-perfil a {
  text-decoration: none;
}

.dark-mode .cartao-perfil {
  background-color: #1e1e2a;
  border-color: #333;
  color: #ddd;
}

.dark-mode .cartao-perfil .nome {
  color: #e8e0d4;
}

.dark-mode .cartao-perfil .info > * {
  border-color: #444;
}

.dark-mode .cartao-perfil .botao-mensagem {
  background-color: #2a2a3a;
}

.dark-mode .cartao-perfil .botao-mensagem a {
  color: #bda26c;
}

.kebab::before {
  border: solid 1px lightgrey;
  background-color: white;
  color: lightgrey;
  display: none;
  content: '\22EE';
  border-radius: 1em;
  width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  font-weight: bold;
  font-family: Arial;
  font-size: 14px;
}

.kebab.visivel::before {
  display: inline-block;
}

.kebab .menu {
  display: none;
  position: absolute;
  padding: 0;
  background-color: #333;
  color: white;
}

.kebab.ativo .menu {
  display: inline-block;
}

.kebab .menu li {
  color: red;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kebab .menu li a {
  text-decoration: none;
  font-family: Helvetica;
  padding: 1em;
  display: inline-block;
  color: white;
  font-weight: bold;
  font-size: small;
}

.form-bloqueio {
  max-width: 30em;
  margin: 2em auto;
  padding: 1.5em;
  background: #faf9f5;
  border: 1px solid #e0d9c8;
  border-radius: 8px;
  text-align: center;
}

.form-bloqueio button {
  border: none;
  border-radius: 6px;
  background-color: #333;
  color: white;
  font-family: inherit;
  font-weight: bold;
  margin-top: 1em;
  padding: .55em 1.6em;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.form-bloqueio button:hover {
  background-color: #d2b478;
  color: #333;
}

.form-bloqueio button.bloquear {
  background-color: #8e2a2a;
}

.form-bloqueio button.bloquear:hover {
  background-color: #a83c3c;
  color: #fff;
}

.series-lista {
  list-style: none;
  margin: 0;
  padding: 0;
}

.series-lista li {
  margin-bottom: 1em;
}

.series-lista li h2 {
  margin: 0;
  padding: 0;
}

.botao-cadastro {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(255, 75, 43, 0.3);
  transition: all 0.3s ease;
}

.botao-cadastro:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 75, 43, 0.5);
}

.botao-cadastro:visited {
  color: white;
}

body {
  margin: 0;
  padding-top: 50px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

h1 {
  word-wrap: break-word;
  font-family: 'Noto Serif', 'Georgia', 'Droid Serif', 'Times', 'Times New Roman', serif;
  font-size: clamp(1.6rem, calc(-0.875rem + 8.333vw), 3rem) !important;
}

main.content {
  padding: .5em 1em;
  margin: 0;
}

@media screen and (min-width: 1001px) {
  main.content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    min-height: 100%;
  }
  main.content h1 {
    font-weight: bold;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 0;
  }
}

main.content h1.main {
  font-size: 3em;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (min-width: 1001px) {
  .colunas {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 2em;
  }
  .colunadupla {
    width: 800px;
    padding: 2px;
    margin-bottom: 1em;
  }
  .colunaunica {
    width: 100%;
  }
}

.texto {
  font-family: Tahoma, Roboto, Helvetica, sans-serif;
  font-size: 17px;
  text-align: justify;
  position: relative;
  overflow: hidden;
}

.texto p {
  line-height: 1.6em;
  margin-bottom: .5em;
  text-indent: 3em;
  word-wrap: break-word;
}

.textinfo {
  font-size: 12pt;
  font-family: Tahoma, Roboto, Helvetica, sans-serif;
  margin-bottom: 3em;
}

.textinfo .autor span {
  font-weight: bold;
}

.comentario {
  border: 2px solid #cca;
  margin-bottom: 1em;
  background: #ffd;
  padding: 1em;
  overflow: hidden;
  word-wrap: break-word;
}

.comentario .remetente {
  font-weight: bold;
}

.comentario .remetente a {
  display: block;
}

.comentario .data {
  font-style: italic;
  font-size: 9pt;
  color: gray;
  margin-bottom: 1em;
}

a {
  color: #3a66cc;
  text-decoration: none;
}

a:visited {
  color: #a2663a;
}

a:hover {
  text-decoration: underline;
}

.arquivo h2 {
  background-color: #333;
  color: #fff;
  padding-left: 1em;
  border: double 4px #f2f2f2;
}

.arquivo ul {
  margin-left: 0;
  padding: 0;
}

.arquivo li {
  margin-bottom: 1em;
  font-size: 16px;
  background-color: #e9e9e9;
  color: white;
}

.arquivo li a {
  padding: 1em 3em;
  display: block;
}

.arquivo li a span {
  color: gray;
  font-size: 9pt;
  float: right;
}

.mensagem {
  margin: 1em auto;
  border: solid 3px #33F;
  padding: 1em;
  text-align: center;
  font-family: 'OpenSans', Arial, sans-serif;
}

@media screen and (min-width: 1001px) {
  iframe, h1 img, .twitter, .rss, .textinfo form {
    display: block;
  }
  body {
    background: white;
    font: normal 1em Candara, Trebuchet MS, Verdana, sans-serif;
    height: 65%;
  }
  .clear {
    clear: both;
  }
  .header {
    margin: 0;
    background: black url(/static/bg.png);
    font-weight: bold;
    font-size: 10pt;
    font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  }
  .header .container {
    width: 768px;
    margin: auto;
    position: relative;
  }
  .header h1 {
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
  }
  .header h1 span {
    display: none;
  }
  .header .logo {
    height: 70px;
    border: none;
  }
  .header .menu {
    right: 0px;
    bottom: 0px;
    position: absolute;
    padding: 6px;
    margin: 0;
    white-space: nowrap;
  }
  .header .menu li {
    display: inline;
  }
  .header .menu a {
    color: white;
    margin-left: 5px;
    text-decoration: none;
  }
  .header .menu a:hover {
    text-decoration: underline;
  }
  .header .rss {
    right: 6px;
    top: 6px;
    position: absolute;
  }
  .header .twitter {
    right: 42px;
    top: 6px;
    position: absolute;
  }
  .header .search {
    position: absolute;
    margin: 0;
    border: none;
    padding: 0;
    top: 6px;
    right: 100px;
  }
  .header .search label {
    color: white;
  }
  .header .search input {
    margin: 0;
    border: none;
    padding: 0 3px;
    width: 10em;
  }
  .bottom-ad-wrapper {
    width: 100%;
    background: white;
    position: relative;
  }
  .bottom-ad {
    width: 768px;
    margin: 10px auto;
    background: white;
    position: relative;
  }
  .materia {
    background: #fff url(/static/livro.png) no-repeat;
    border-bottom: dotted 2px #cc0;
    padding: 2px 24px;
    font: bold 10pt Trebuchet MS;
  }
  .materia .titulo {
    font-size: 10pt;
    font-weight: bold;
  }
  .materia .chamada {
    font-size: 9pt;
    font-weight: normal;
  }
  .ad-banner, .ad-superbanner {
    margin: auto;
    text-align: center;
  }
  .texto h1, h2, h3 {
    line-height: 1em;
    padding-bottom: .2em;
  }
  .vitrine {
    text-align: center;
  }
  .aviso {
    margin: 1em auto;
    border: solid 3px #F33;
    padding: 1em;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    background: #fee;
  }
  .calendario {
    font-size: 10pt;
  }
  .calendario li {
    list-style: none;
  }
  .calendario .numero {
    color: gray;
    font-size: 7pt;
  }
  #dark {
    background-color: black;
    opacity: .8;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0;
    bottom: 0;
  }
  #aviso {
    position: fixed;
    left: 0px;
    right: 0px;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    top: 0;
    bottom: 0;
  }
  #aviso .interno {
    width: 640px;
    background: white;
    opacity: 1;
    border: solid 3px brown;
    margin: 100px auto;
    padding: 40px;
  }
  #aviso p {
    margin-bottom: 5px;
  }
  .textinfo form {
    display: inline-block;
  }
}

.v2-header {
  position: relative;
  top: 0;
  background-color: #333333;
  margin: 0;
  padding: 0;
  left: 0;
  right: 0;
}

.v2-container {
  position: relative;
}

.v2-header .logo {
  position: relative;
  float: left;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: none;
}

.v2-header .logo img {
  position: relative;
  display: block;
  height: 50px;
  margin: 0;
}

.v2-header .logo span {
  display: none;
}

.v2-header ul {
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333;
  float: right;
  margin-right: 1em;
}

.v2-header ul li {
  float: left;
}

.v2-header ul li a {
  display: inline-block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 10px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 17px;
}

.v2-header ul li a:hover {
  background-color: #555;
}

.v2-header a.v2-tap ~ ul {
  display: none;
}

.v2-header input[type=text] {
  color: #828282;
  text-align: left;
  padding: 8px 10px;
  border: none;
  text-decoration: none;
  transition: 0.3s;
  font-size: 17px;
  margin-top: 6px;
}

.v2-header input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.v2-header label[for='trigger'] {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='30px' height='30px' viewBox='0 0 30 30' enable-background='new 0 0 30 30' xml:space='preserve'><rect width='30' height='6' fill='grey'/><rect y='24' width='30' height='6' fill='grey'/><rect y='12' width='30' height='6' fill='grey'/></svg>");
  background-size: contain;
}

.v2-header .clear {
  clear: both;
}

@media screen and (min-width: 1201px) {
  .v2-header ul {
    overflow: visible;
  }
  .v2-header li:hover a.v2-tap ~ ul {
    display: block;
    position: absolute;
    z-index: 20;
  }
  .v2-header li:hover a.v2-tap ~ ul li {
    position: relative;
    float: none;
  }
  .v2-header li:hover a.v2-tap ~ ul li a {
    width: 100%;
    text-align: left;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1200px) {
  .v2-header h1 {
    position: relative;
    left: 0;
    margin: 0;
    padding: 0;
  }
  .v2-header ul {
    position: fixed;
    float: none;
    display: none;
    width: 100%;
    z-index: 1;
  }
  .v2-header label[for='trigger'] {
    display: inline;
    position: absolute;
    z-index: 2;
  }
  .v2-header input[type=checkbox]:checked ~ ul {
    display: block;
    height: 100%;
    position: relative;
    padding: 5% 0;
    z-index: 10;
  }
  .v2-header ul li {
    float: none;
  }
  .v2-header ul li a {
    text-align: left;
    width: 100%;
  }
  .v2-header ul li a.v2-tapped ~ ul {
    display: inline;
    position: relative;
    margin: 0;
  }
  .v2-tapped ~ ul li {
    margin-left: 20px;
  }
  .v2-tapped ~ ul li a {
    text-align: left;
  }
}

.lista {
  font-family: "Trebuchet MS","Droid Sans","Sans-serif";
}

.lista h2 {
  font-weight: bold;
  font-size: 18px;
  line-height: 1em;
  margin-bottom: 6px;
  color: #444;
  border-bottom: dotted 2px #cc0;
  font-family: "Trebuchet MS","Droid Sans","Sans-serif";
}

.lista .conto {
  margin-bottom: 1em;
  overflow: hidden;
  position: relative;
  overflow-x: hidden;
}

@media screen and (min-width: 1001px) {
  .lista .conto {
    border-bottom: none 1px #cc0;
    padding-top: 2px;
    padding-bottom: 2px;
  }
}

.lista .conto a {
  text-decoration: none;
  color: black;
}

.lista .conto a:visited .titulo {
  color: #a2663a;
}

.lista .conto .titulo {
  text-decoration: none;
  color: #33D;
  font-weight: bold;
  font-size: 17px;
  font-family: 'Noto Serif', 'Georgia', 'Droid Serif', 'Times New roman', 'Times', serif;
}

.lista .conto .titulo a {
  text-decoration: none;
  color: #33D;
  font-weight: bold;
  font-size: 21px;
}

.lista .conto .titulo a:visited {
  color: #a2663a;
}

.lista .conto .date, .lista .conto .idade {
  font-style: italic;
  font-size: 12px;
  color: #030303;
}

.lista .conto .chamada {
  overflow-x: hidden;
  position: relative;
  font-size: 16px;
  font-family: 'Noto Sans', Roboto, 'Trebuchet MS', Tahoma, Arial, sans-serif;
}

.lista .conto .autor a {
  color: #666;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lista .conto .autor a:hover {
  color: #3a66cc;
  text-decoration: underline;
}

.lista.mais-lidos {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 12px;
}

.lista.mais-lidos .conto .titulo {
  font-size: 21px;
}

.lista.mais-lidos .rank {
  font-size: 38px;
  text-align: right;
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  h1 img, .twitter, .rss, .textinfo form {
    display: none;
  }
  .header h1 {
    display: block;
    color: #ccc;
    background-color: black;
    font-size: 1.4rem;
    font-family: 'Droid Sans', Verdana, Arial, sans-serif;
    margin: 0;
    padding: .3em;
    text-align: center;
  }
  h1 a {
    text-decoration: none;
    color: #ccc;
  }
  .search label {
    display: none;
  }
  .search input[type=text] {
    margin-top: .2rem;
    font-size: 1.2rem;
    width: 100%;
  }
}

.footer {
  clear: both;
  background: black url(/static/grass_pattern.webp) repeat-x bottom;
  color: white;
}

.footer li {
  list-style: none;
  margin-bottom: 2px;
  margin-top: 2px;
}

.footer ul {
  padding: 0;
}

@media screen and (max-width: 1000px) {
  .footer ul {
    margin: 0;
    padding: 0;
  }
}

.footer a {
  display: block;
  color: #d4a843;
  padding: .4em 0;
  text-decoration: none;
  transition: color .2s;
}

.footer a:hover {
  color: #f2f2f2;
}

.footer a:visited {
  color: #b89040;
}

.footer h3 {
  color: #bda26c;
  font-size: 15px;
  margin: 0 0 8px;
  padding: 0;
  font-weight: bold;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.footer .coluna {
  flex: 1;
  min-width: 180px;
  padding: 0 16px;
}

.footer .footer-cta {
  color: #e8c87a;
  font-weight: bold;
}

.footer .direitos {
  flex-basis: 100%;
  text-align: center;
  font: normal 8pt 'Trebuchet MS', sans-serif;
  color: #888;
  padding: 20px 16px 100px;
  border-top: 1px solid #333;
  margin-top: 16px;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #ccc;
  padding-top: 24px;
  margin: auto;
  position: relative;
  max-width: 1200px;
}

.pager-v1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1em;
  font-family: Verdana;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 2em;
  margin-top: 2em;
}

.pager-v1 div {
  border-radius: 5px;
  height: 36px;
  background-color: #333333;
  line-height: 36px;
  color: #d2b478;
  text-align: center;
}

.pager-v1 div a {
  color: #d2b478;
  display: block;
}

.pager-v1 div a:hover {
  color: #333333;
  background-color: #d2b478;
}

#comentarios h2 {
  background-color: #ddb;
  color: #331;
  padding-left: .4em;
}

.conto-listas-v1 .lista {
  font-family: Tahoma,sans-serif;
  font-size: .9em;
  margin-bottom: 1.3em;
  border-bottom: dotted 1px;
  padding: .5em;
  line-height: 1.4em;
}

.conto-listas-v1 h2 {
  background-color: #ddb;
  color: #331;
  padding-left: .4em;
}

.conto-listas-v1 div a {
  font-size: 1.2em;
  font-weight: bold;
  display: block;
}

.cdc-form {
  max-width: 30em;
  margin: 1em auto;
  padding: 1.25em 1.5em 1.5em;
  background: #faf9f5;
  border: 1px solid #e0d9c8;
  border-radius: 8px;
  box-sizing: border-box;
}

.cdc-form.larga {
  max-width: 50em;
}

.cdc-form h1 {
  font-size: 1.6em;
  margin-top: .2em;
}

.cdc-form h2 {
  margin-top: .2em;
}

.cdc-form p {
  font-size: .95em;
  line-height: 1.45;
  margin: .8em 0;
}

.cdc-form p:first-of-type {
  margin-top: 0;
}

.cdc-form ul, .cdc-form ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cdc-form li {
  margin: .35em 0;
}

.cdc-form label {
  display: block;
  font-weight: bold;
  font-size: .95em;
  color: #333;
  margin: .9em 0 .3em;
}

.cdc-form input[type="text"], .cdc-form input[type="email"], .cdc-form input[type="password"], .cdc-form input[type="url"], .cdc-form input[type="date"], .cdc-form input[type="number"], .cdc-form input[type="tel"], .cdc-form select, .cdc-form textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: .5em .65em;
  border: 1px solid #c9c1ad;
  border-radius: 6px;
  background: #fff;
  color: #222;
  font-family: inherit;
  font-size: 16px;
}

.cdc-form textarea {
  min-height: 6em;
  resize: vertical;
}

.cdc-form textarea.grande {
  min-height: 20em;
}

.cdc-form select:required:invalid {
  color: gray;
}

.cdc-form select.fina {
  width: auto;
  min-width: 6em;
}

.cdc-form input[type="file"] {
  display: block;
  margin-top: .3em;
  font-size: 15px;
}

.cdc-form option {
  color: black;
}

.cdc-form option[value=""][disabled] {
  display: none;
}

.cdc-form input:focus, .cdc-form select:focus, .cdc-form textarea:focus {
  outline: none;
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(210, 180, 120, 0.3);
}

.cdc-form input[type="checkbox"], .cdc-form input[type="radio"] {
  display: inline-block;
  width: auto;
  margin: 0 .45em 0 0;
  vertical-align: middle;
  accent-color: #b8965a;
}

.cdc-form label.chk, .cdc-form p > label, .cdc-form div.chk label {
  display: block;
  font-weight: normal;
  font-size: 1em;
  margin: .5em 0;
}

.cdc-form .linha-selects {
  display: flex;
  gap: .5em;
}

.cdc-form .linha-selects select {
  flex: 1;
  min-width: 0;
}

.cdc-form .linha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8em;
  flex-wrap: wrap;
  margin-top: 1em;
  font-size: .95em;
}

.cdc-form .linha label {
  display: flex;
  align-items: center;
  margin: 0;
}

.cdc-form button, .cdc-form input[type="submit"] {
  display: inline-block;
  margin-top: 1em;
  padding: .55em 1.4em;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.cdc-form button:hover, .cdc-form input[type="submit"]:hover {
  background: #d2b478;
  color: #333;
}

.cdc-form button.perigo, .cdc-form input[type="submit"].perigo {
  background: #8e2a2a;
}

.cdc-form button.perigo:hover, .cdc-form input[type="submit"].perigo:hover {
  background: #a83c3c;
  color: #fff;
}

.cdc-form .botoes {
  display: flex;
  gap: .6em;
}

.cdc-form .botoes button, .cdc-form .botoes input[type="submit"] {
  margin-top: 1em;
}

.cdc-form a.cadastro-link {
  background-color: #EDEBD5;
  border-radius: 6px;
  margin: 1.2em 0 .2em;
  padding: .7em;
  display: block;
  text-align: center;
  font-weight: bold;
}

.cdc-busca {
  display: flex;
  align-items: center;
  gap: .5em;
  max-width: 40em;
  margin: 1em 0;
}

.cdc-busca input[type="text"] {
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
  padding: .55em 1em;
  border: 1px solid #c9c1ad;
  border-radius: 24px;
  background: #fff;
  font-family: inherit;
  font-size: 18px;
}

.cdc-busca input[type="text"]:focus {
  outline: none;
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(210, 180, 120, 0.3);
}

.cdc-busca input[type="submit"], .cdc-busca button {
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: #333 url('data:image/svg+xml;utf8,<svg focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') no-repeat scroll center/22px;
  cursor: pointer;
  transition: background-color .2s;
}

.cdc-busca input[type="submit"]:hover, .cdc-busca button:hover {
  background-color: #d2b478;
}

.tufos-iframe {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  height: 255px;
}

.tufos-iframe > div > div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.tufos-iframe > div > div > a, .tufos-iframe > div > div > iframe {
  margin-left: 5px;
  margin-top: 5px;
}

.ads-iframe {
  width: 240px;
  height: 120px;
  overflow: none;
  border: none;
}

.votos {
  overflow: hidden;
}

.votos tr {
  font-size: normal;
}

.votos tr td.nota {
  text-align: right;
  vertical-align: top;
  padding: .5em;
}

.votos tr td.titulo a, .votos tr td.usuario a {
  padding: .5em;
  display: inline-block;
  margin-bottom: 4px;
}

.autores .indice a {
  border-radius: 5px;
  height: 36px;
  background-color: #333333;
  line-height: 36px;
  color: #d2b478;
  text-align: center;
  display: inline-block;
  min-width: 28px;
  margin-bottom: 1em;
}

.autores ul {
  padding-left: 0;
}

.autores ul li {
  list-style: none;
}

.autores ul li a {
  display: inline-block;
  padding: 10px;
}

details {
  max-width: 50em;
  margin-bottom: 1em;
}

details[open] summary::after {
  transform: rotate(90deg);
  transition: transform .3s;
}

details summary {
  border-radius: 5px;
  background-color: #333;
  color: #f2f2f2;
  padding: .5em;
  font-family: Verdana;
  font-size: 16px;
  font-weight: bold;
  display: block;
  position: relative;
}

details summary::after {
  content: "\25BA";
  position: absolute;
  right: 1em;
  transform: rotate(0deg);
  transition: transform .3s;
}

details summary::-webkit-details-marker {
  display: none;
}

div.rascunho {
  margin-top: .5em;
  border: solid 1px #EDEBD5;
  padding: 0;
  border-radius: 5px;
}

div.rascunho h2 {
  background-color: #EDEBD5;
  margin: 0;
  font-size: large;
  line-height: normal;
  padding: 2px;
}

div.rascunho .buttons {
  display: flex;
  padding: 1em;
}

div.rascunho .buttons form {
  margin-right: 1em;
}

div.rascunho .buttons button {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: .45em 1.2em;
  font-family: inherit;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background .2s, color .2s;
}

div.rascunho .buttons button:hover {
  background: #d2b478;
  color: #333;
}

div.rascunho .buttons button.remover {
  background: #8e2a2a;
}

div.rascunho .buttons button.remover:hover {
  background: #a83c3c;
  color: #fff;
}

div.rascunho .publicando {
  color: green;
}

div.rascunho .retornado {
  color: red;
  padding: 1em;
}

.painel-contos {
  margin-top: 1em;
  border-left: solid 12px #AEA574;
  padding-left: 4px;
  background: #EDEBD5;
  line-height: 1.4em;
}

.painel-contos .titulo a {
  text-decoration: underline;
}

.painel-contos .nota {
  font-style: italic;
}

.bloco-links {
  padding: 0;
  max-width: 50em;
}

.bloco-links li {
  border-radius: 5px;
  background-color: #EDEBD5;
  padding: .5em;
  margin: 8px 0;
  font-family: Verdana;
  font-size: 16px;
  display: block;
  list-style: none;
}

.bloco-links li a {
  display: block;
}

.chat-window {
  position: fixed;
  bottom: 0;
  right: 0;
  border-top: solid 1px black;
  border-left: solid 1px black;
  border-top-left-radius: 5px;
}

.chat-window > a {
  background-color: black;
  color: white;
  text-decoration: none;
  font-family: "Open Sans", Arial;
  font-size: 16px;
  font-weight: bold;
  padding: .5em;
  display: block;
}

.chat-escondido {
  display: none;
}

#chat-grid {
  width: 20em;
}

.chat-mensagens {
  padding: .5em;
  font-family: "Open Sans";
  font-size: 12px;
  overflow-y: scroll;
  max-height: 30em;
  background-color: white;
}

.chat-mensagens p span {
  font-weight: bold;
}

.chat-texto input {
  border: none;
  width: 100%;
  padding: .5em;
  background-color: lightyellow;
  box-sizing: border-box;
}

#chat-window-2 {
  position: fixed;
  right: 0;
  bottom: 0;
  border-left: solid 1px black;
  border-top-left-radius: 5px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-family: "Open Sans", Arial, "sans-serif";
  font-size: 12px;
  max-height: 80%;
  max-width: 90%;
}

#chat-window-2 .chat-texto input {
  background: #ffffe0;
  diplay: block;
  width: 100%;
  border: none;
  padding: .5em;
}

#chat-window-2 #chat-status {
  background-color: black;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: .5em;
  border-top-left-radius: 5px;
}

#chat-window-2 .chat-mensagens {
  max-width: 320px;
  max-height: 30em;
  background: white;
  overflow-y: scroll;
  padding: .5em;
}

#chat-window-2.inativo .chat-mensagens {
  display: none;
}

#chat-window-2.inativo .chat-texto {
  display: none;
}

#avaliacao-widget {
  display: flex;
  flex-direction: column;
  font-family: Georgia;
  font-size: large;
  margin: 4em 0;
}

#avaliacao-widget div {
  margin: 1em auto;
  text-align: center;
}

#avaliacao-widget button {
  border: none;
  background: transparent;
  padding: 0;
  color: rgba(0, 0, 0, 0);
  text-shadow: 0 0 0 #bbb;
  font-size: 24px;
  vertical-align: middle;
}

#avaliacao-widget button:first-child {
  font-size: 38px;
  text-shadow: 0 0 0 #bbb;
}

#avaliacao-widget button.hidden {
  display: none;
}

#avaliacao-widget button.set {
  text-shadow: 0 0 0 red;
}

#avaliacao-widget button::hover {
  text-shadow: 0 0 0 orange;
}

#avaliacao-widget hr {
  color: transparent;
  border-top: 2px dotted #8c8b8b;
  text-align: center;
  width: 100%;
  height: 0;
  overflow: visible;
}

#avaliacao-widget hr:after {
  content: '§';
  display: inline-block;
  position: relative;
  top: -14px;
  padding: 0 10px;
  background: white;
  color: #8c8b8b;
  font-size: 18px;
}

body.cdc-authenticated .cdc-authenticated {
  display: block !important;
}

body.cdc-authenticated .cdc-not-authenticated {
  display: none !important;
}

body.cdc-not-authenticated .cdc-not-authenticated {
  display: block !important;
}

body.cdc-not-authenticated .cdc-authenticated {
  display: none !important;
}

body.cdc-vip .cdc-vip {
  display: block !important;
}

body.cdc-vip .cdc-not-vip {
  display: none !important;
}

body.cdc-not-vip .cdc-not-vip {
  display: block !important;
}

body.cdc-not-vip .cdc-vip {
  display: none !important;
}

.tag-origem {
  display: inline-block;
  font-size: 0.7em;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: normal;
}

.tag-ia {
  background: #e8e0f0;
  color: #6a1b9a;
}

.tag-trad {
  background: #e0f0e8;
  color: #2e7d32;
}

.origem-texto {
  font-size: 0.85em;
  color: #666;
}

/* CTA de assinatura premium (remoção de propagandas) */
.ad-cta {
  text-align: center;
  font-size: 0.82em;
  color: #888;
  padding: 6px 10px;
  margin: 0 auto 1em;
  max-width: 728px;
}

.ad-cta a {
  color: #c9a96e;
  font-weight: bold;
  text-decoration: none;
}

.ad-cta a:hover {
  text-decoration: underline;
}

.post-story-cta {
  text-align: center;
  font-size: 1em;
  color: #555;
  background: #f7f3ec;
  border: 1px solid #e6dcc8;
  border-radius: 8px;
  padding: 1em 1.2em;
  margin: 1.5em 0;
}

.post-story-cta a {
  display: inline-block;
  margin-top: 0.4em;
  background: #c9a96e;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 6px;
}

.post-story-cta a:hover {
  background: #b8965a;
}

.premium-banner {
  position: relative;
  background: #1a1a2e;
  color: #fff;
  font-size: 0.9em;
  padding: 6px 40px 6px 12px;
  text-align: center;
}

.premium-banner a {
  color: #dfc08a;
  font-weight: bold;
  text-decoration: none;
}

.premium-banner a:hover {
  text-decoration: underline;
}

.premium-banner-close {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3em;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 2;
}

.premium-banner-close:hover {
  color: #fff;
}
