@media (max-width: 760px) {
    .apresentacao {
        flex-direction: column;
        padding: 30px 20px;
    }

    .fotoapresentacao .skin-fundo {
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.2);
        width: 100%;
        max-width: 300px;
        border-radius: 8px;
        box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .fotoapresentacao .skin-fundo img {
        width: 100%;
        height: auto;
        display: block;
        position: static;
    }

    .textoapresentacao {
        text-align: center;
    }

    .statuscomissoes {
        padding: 30px 20px;
        margin: 60px 20px 0;
    }

    .cardsstatus {
        flex-direction: column;
    }

    .cardstatus {
        max-width: 100%;
    }
}

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

html {
    margin: 0;
    padding: 0;
    overflow-x: clip;
}

body {
    margin: 0;
    padding: 0;
    overflow: visible;
    position: relative;
}

#zoom-wrapper {
    width: 1920px;
    transform-origin: top left;
}

header {
    background-image: url("img/header.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 200px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("img/fundos/fundomain.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: -1;      /* fica atrás do conteúdo */
  pointer-events: none;
}

.menus {
    display: flex;
    flex-direction: column;
}

.menus nav {
    display: flex;
    justify-content: space-evenly;
    background: #4f1212;
    background: linear-gradient(180deg, rgba(79, 18, 18, 1) 0%, rgba(133, 41, 41, 1) 30%, rgba(133, 41, 41, 1) 70%, rgba(79, 18, 18, 1) 100%);
    align-items: center;
    width: 100%;
    padding: 10px 0;
    z-index: 2;
    box-shadow: 0px 7.5px 5px rgba(0,0,0,0.5);
}

.menu1, .menu2 {
    display: flex;
    list-style: none;
    gap: 150px;
    margin: 0;
    padding: 0px 100px 0px 100px;
}

.menu1 a, .menu2 a {
    text-decoration: none;
    color: #cccccc;
    font-weight: bold;
    font-family: sans-serif;
}

.menu1 a:hover, .menu2 a:hover {
    text-decoration: underline;
}

.lista1, .lista2 {
    position: relative;
}

.lista1conteudo, .lista2conteudo {
    display: none;
    position: absolute;
    list-style: none;
    background: linear-gradient(180deg, rgba(133, 41, 41, 1) 0%, #330000 20%, #330000 80%, rgba(133, 41, 41, 1) 100%);
    padding: 15px;
    text-align: center;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0px;
    white-space: nowrap;
}

.lista1:hover .lista1conteudo {
    display: flex;
    flex-direction: column;
    border-radius: 0px 0px 20px 20px;
}

.lista2:hover .lista2conteudo {
    display: flex;
    flex-direction: column;
    border-radius: 0px 0px 10px 10px;
}

.fotomenu {
    width: 150px;
    height: 150px;
    border: 3px solid black;
    border-radius: 10px;
    background-color: white;
    position: absolute;
    z-index: 10;
    box-shadow: 0px 5px 5px 10px rgba(0,0,0,0.5);
}

.submenu {
    display: flex;
    width: 100%;
}

.submenu1 {
    background-image: url("img/bandeira.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 150px;
    margin: 0;
    padding: 5px 100px 50px 100px;
    overflow: hidden;
    font-size: 13px;
    font-family: sans-serif;;
}

.submenu2 {
    background-image: none;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 150px;
    margin: 0;
    padding: 5px 100px 50px 100px;
    
}

.submenu2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("img/bandeira.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scaleX(-1);
    z-index: 0;
}

.espacofoto {
    width: 150px;
    flex-shrink: 0;
}

.submenu1 p, .submenu2 p {
    font-size: 14px;
    position: absolute;
    z-index: 1;
    padding: 30px 100px 0px 100px;
    text-decoration: none;
    color: #cccccc;
    font-weight: bold;
    font-family: sans-serif;
}

.submenu2 a {
    text-decoration: underline;
    color: #cccccc;
    font-weight: bold;
    font-family: sans-serif;
    margin-left: 25px;
}

main {
  padding: 12rem 5vw 4rem;
  min-height: auto;
}

.apresentacao {
    display: flex;
    align-items: center;
    gap: 60px;
    border-radius: 20px;
    box-shadow: 5px 10px 12px rgba(0,0,0,0.4);
    background:
        radial-gradient(circle at center,
        rgba(0,0,0,0.75) 50%,
        rgba(0,0,0,0.35) 100%,
        rgba(0,0,0,0.75) 100%);
    padding: 45px 75px 45px 75px;
    margin-top: -150px;
    margin-left: 200px;
    margin-right: 200px;
}

.textoapresentacao {
    flex: 1 1 auto;
    max-width: calc(95% - 340px);
    color: #880000;
    text-shadow: 2px 2px 5px #aa0000;
    line-height: 1.5;
    text-align:justify;
}

.textoapresentacao p {
    position: relative;
    padding-left: 28px;
    margin-bottom: 20px;
}

.textoapresentacao p::before {
  content: "⋆˚꩜｡";
  position: absolute;
  left: -25px;
  top: 0.35em;
  color: #b41a1a;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  opacity: 0.95;
}

.textoapresentacao p:last-child {
    margin-bottom: 0;
}

.fotoapresentacao {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fotoapresentacao img {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    height: auto;
    max-width: 300px;
    display: block;
    border-radius: 8px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.5);
    position: static;
}

.escondido {
    display: none !important;
}

@keyframes zoomOut {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(0); opacity: 0; }
}

.pop-out {
    animation: zoomOut 0.6s ease-in forwards;
}

@keyframes zoomInPop {
    0%   { transform: scale(0); opacity: 0; }
    70%  { transform: scale(1.03); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.slide-in {
    animation: zoomInPop 0.7s ease-out forwards;
    transform-origin: center center;
}

.apresentacao.modo-precos {
    flex-direction: column;
    align-items: stretch;
}

.conteudoprecos {
    width: 100%;
    color: #880000;
    text-shadow: 2px 2px 5px #aa0000;
    font-family: sans-serif;
    line-height: 1.5;
}

.precoitem {
    margin-bottom: 30px;
    padding-left: 30px;
}

.precoitem:last-child {
    margin-bottom: 0;
}

.precoitem h2 {
    margin-bottom: 12px;
    color: #b41a1a;
}

.precoitem p {
    position: relative;
    padding-left: 50px;
    margin-bottom: 8px;
}

.precoitem p::before {
    content: "⋆˚꩜｡";
    position: absolute;
    left: 0;
    top: 0.15em;
    color: #b41a1a;
    font-weight: bold;
    font-size: 16px;
    opacity: 0.95;
}

.conteudomods {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}

.modsheader {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.fotomods {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fotomods img {
    width: 100%;
    height: auto;
    max-width: 320px;
    display: block;
}

.textomods {
    flex: 1 1 auto;
    color: #cccccc;
    line-height: 1.8;
    text-align: justify;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-size: 18px;
}

.textomods p {
    margin-bottom: 18px;
}

.textomods p:last-child {
    margin-bottom: 0;
}

.statuscomissoes {
    padding: 0;
    margin: 80px 200px 0;
    background: none;
    box-shadow: none;
}

.statuscomissoes h2 {
    color: #cccccc;
    font-family: sans-serif;
    margin-bottom: 25px;
    font-size: 20px;
    text-align: center;
}

.cardsstatus {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.cardstatus {
    flex: 1 1 0;
    min-width: 0;
    background-color: rgba(0,0,0,0.45);
    border-radius: 10px;
    padding: 0 0 8px 0;
    box-shadow: 2px 4px 6px rgba(0,0,0,0.4);
    overflow: hidden;
}

.cardstatus img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}

.cardstatus p {
    color: #cccccc;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: bold;
    padding: 10px 4px 4px;
    margin: 0;
    text-align: center;
}

.postscriacoes {
    display: flex;
    align-items: center;
    gap: 60px;
    border-radius: 20px;
    box-shadow: 5px 10px 12px rgba(0,0,0,0.4);
    background:
        radial-gradient(circle at center,
        rgba(0,0,0,0.50) 0%,
        rgba(0,0,0,0.50) 85%,
        rgba(0,0,0,0.0) 100%);
    padding: 75px;
    margin-top: 100px;
    margin-left: 50px;
    margin-right: 50px;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("img/fundos/fundocomissoes.avif");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

body.bg-comissoes::after {
    opacity: 1;
}

body.bg-comissoes .apresentacao {
    background:
        radial-gradient(circle at center,
        rgba(0,0,0,0.80) 50%,
        rgba(0,0,0,0.80) 100%,
        rgba(0,0,0,0.80) 100%);
}

.apresentacao {
    transition: background 0.8s ease-in-out;
}

.cardsmods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 80px 200px 0;
}

.cardmod {
    background-color: rgba(0,0,0,0.55);
    border-radius: 10px;
    padding: 0 0 16px 0;
    box-shadow: 2px 4px 6px rgba(0,0,0,0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cardmod img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}

.cardmod h3 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 14px;
    color: #ffffff;
    padding: 16px 16px 10px;
    margin: 0;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.6);
    letter-spacing: 1px;
}

.cardmod p {
    color: #cccccc;
    font-family: sans-serif;
    font-size: 13px;
    line-height: 1.6;
    padding: 0 16px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.cardsparceiros {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 50px;
    margin: 0 200px;
}

.cardparceiro {
    position: relative;
    padding-right: 50px;
    padding-bottom: 60px;
}

.cardparceiro img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.5);
    display: block;
    position: relative;
    z-index: 1;
}

.cardparceiro-info {
    position: absolute;
    bottom: 0;
    right: 30px;
    width: 85%;
    background-color: #ffffff;
    padding: 22px 8px;
    text-align: center;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.4);
    z-index: 2;
}

.cardparceiro-info h3 {
    font-family: arial;
    font-size: 15px;
    color: #222222;
    margin-bottom: 6px;
    font-weight: bold;
}

.cardparceiro-info p {
    font-family: sans-serif;
    font-size: 13px;
    color: #555555;
    margin: 0;
    line-height: 1.4;
}

.fundo-parceiros {
    position: fixed;
    inset: 0;
    background-color: #171717;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.tituloparceiros {
    grid-column: 1 / -1;
    margin-top: -100px;
}

.titulotermos {
    grid-column: 1 / -1;
    margin-top: -100px;
}

body.bg-parceiros .fundo-parceiros {
    opacity: 1;
}

.textoapresentacao h1,
.conteudoprecos h1,
.textomods h1,
.conteudotermos h1,
.tituloparceiros,
.titulotermos,
.titulocriacoes {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    line-height: 1.4;
    position: relative;
    text-shadow: 0 0 15px rgba(0,0,0,0.9);
    text-decoration: none;
}

.textoapresentacao h1::before,
.textoapresentacao h1::after,
.conteudoprecos h1::before,
.conteudoprecos h1::after,
.textomods h1::before,
.textomods h1::after,
.conteudotermos h1::before,
.conteudotermos h1::after,
.tituloparceiros::before,
.tituloparceiros::after,
.titulotermos::before,
.titulotermos::after,
.titulocriacoes::before,
.titulocriacoes::after  {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.textoapresentacao h1::before,
.conteudoprecos h1::before,
.textomods h1::before,
.conteudotermos h1::before,
.tituloparceiros::before,
.titulotermos::before,
.titulocriacoes::before {
    color: #ff003c;
    transform: translate(-3px, 0);
    mix-blend-mode: screen;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.textoapresentacao h1::after,
.conteudoprecos h1::after,
.textomods h1::after,
.conteudotermos h1::after,
.tituloparceiros::after,
.titulotermos::after,
.titulocriacoes::after {
    color: #00f0ff;
    transform: translate(3px, 0);
    mix-blend-mode: screen;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

.termos {
    width: 100%;
    margin-top: 0;
}

.termosgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 85%;
    margin: 0 auto;
}

.termoscard {
    background-color: rgba(0, 0, 0, 0.50);
    border: 2px solid #555555;
    border-radius: 12px;
    padding: 30px;
    color: #ffffff;
    font-family: sans-serif;
}

.termoscard h2 {
    font-family: sans-serif;
    font-size: 22px;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid #999999;
    color: #999999;
    font-weight: 600;
}

.termositem {
    margin-bottom: 18px;
}

.termositem:last-of-type {
    margin-bottom: 0;
}

.termositem h3 {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #999999;
    margin-bottom: 6px;
}

.termositem p {
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #777777;
    font-weight: 300;
}

.termosaviso {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #888888;
    font-size: 15px;
    font-style: italic;
    color: #555555;
    font-weight: 300;
}

.conteudotermos {
    width: 100%;
    color: #cccccc;
    font-family: sans-serif;
    line-height: 1.7;
    text-align: justify;
    font-size: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 30px;
}

.conteudotermos p strong {
    color: #ffffff;
    font-weight: bold;
}

.apresentacao.modo-termos {
    flex-direction: column;
    align-items: stretch;
}

.criacoes {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}


.titulocriacoes {
    grid-column: 1 / -1;
    margin-top: -100px;
    margin-bottom: 40px;
}

.criacoes-toolbar {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.criacoes-busca {
    flex: 1;
    min-width: 200px;
}

.criacoes-busca input {
    width: 100%;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 10px 14px;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 14px;
    outline: none;
}

.criacoes-busca input::placeholder {
    color: rgba(255,255,255,0.4);
}

.criacoes-busca input:focus {
    border-color: rgba(255,255,255,0.3);
}

.criacoes-controles {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.criacoes-controles select {
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 10px 36px 10px 14px;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='white'><path d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
    width: auto;
    min-width: 200px;
}

.criacoes-controles select option {
    background-color: #1F1F1E;
    color: #ffffff;
}

.criacoes-feed {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.post-card {
    background-color: #2a2a29;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.post-cabecalho {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.post-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #1a1a19;
}

.post-autor {
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.post-data {
    font-family: sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.post-conteudo {
    margin-left: 46px;
}

.post-titulo {
    font-family: serif;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.post-texto {
    font-family: sans-serif;
    font-size: 14px;
    color: #e0e0e0;
    line-height: 1.5;
    margin-bottom: 12px;
    white-space: pre-wrap;
}

.post-anexos {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.post-anexos.qtd-1 { grid-template-columns: 1fr; }
.post-anexos.qtd-2 { grid-template-columns: 1fr 1fr; }
.post-anexos.qtd-3 { grid-template-columns: 1fr 1fr 1fr; }
.post-anexos.qtd-4 { grid-template-columns: 1fr 1fr; }

.post-anexo {
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a19;
    aspect-ratio: 16 / 10;
}

.post-anexo img,
.post-anexo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-anexo.tipo-audio,
.post-anexo.tipo-arquivo {
    aspect-ratio: auto;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-anexo audio {
    width: 100%;
}

.post-anexo.tipo-arquivo a {
    color: #ffffff;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
}

.post-anexo.tipo-arquivo a:hover {
    text-decoration: underline;
}

.post-tag {
    font-family: sans-serif;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 12px;
    color: #ffffff;
}

.post-tag.mods { background-color: #c75a3a; }
.post-tag.modpacks { background-color: #7a4ec7; }
.post-tag.plugins { background-color: #3a7ac7; }
.post-tag.datapacks { background-color: #c7a73a; }
.post-tag.ports { background-color: #3ac77a; }
.post-tag.pixelart { background-color: #c73a8a; }
.post-tag.modelo { background-color: #3ac7c0; }

.post-acoes {
    display: flex;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.post-acao {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-family: sans-serif;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.15s, color 0.15s;
}

.post-acao:hover {
    background-color: rgba(255,255,255,0.06);
    color: #ffffff;
}

.post-acao.curtido {
    color: #ff4d6d;
}

.criacoes-vazio {
    text-align: center;
    padding: 40px;
    color: rgba(255,255,255,0.5);
    font-family: sans-serif;
}

.modal-comentarios {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-conteudo {
    background-color: #2a2a29;
    border-radius: 12px;
    padding: 30px;
    max-width: 400px;
    text-align: center;
    color: #ffffff;
    font-family: sans-serif;
    position: relative;
}

.modal-conteudo h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.modal-conteudo p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.modal-fechar {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    cursor: pointer;
}

.criacoes-voltartopo {
    position: fixed;
    left: 23%;
    top: 93%;
    transform: translateY(-50%);
    width: 3.125vw;
    height: 3.125vw;
    min-width: 36px;
    min-height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.08);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.9vw;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.criacoes-voltartopo:hover {
    background-color: rgba(255,255,255,0.18);
}

.criacoes-sugestoes {
    position: absolute;
    left: calc(100% + 60px);
    top: 90px;
    width: 280px;
    height: 100%;
    z-index: 50;
}

.criacoes-sugestoes-sticky {
    background-color: #2a2a29;
    border-radius: 12px;
    padding: 16px;
    width: 280px;
    box-sizing: border-box;
}

.criacoes-sugestoes-sticky.elementor-sticky--active {
    position: fixed;
    z-index: 50;
}

.criacoes-sugestoes-placeholder {
    width: 280px;
    visibility: hidden;
    pointer-events: none;
}

.criacoes-sugestoes-sentinel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    visibility: hidden;
    pointer-events: none;
}

.sugestoes-titulo {
    font-family: sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
    font-weight: 600;
}

.sugestoes-lista {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sugestao-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sugestao-icone {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background-color: #1a1a19;
}

.sugestao-info {
    flex: 1;
    min-width: 0;
}

.sugestao-nome {
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.sugestao-descricao {
    font-family: sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
    line-height: 1.4;
}

.sugestao-redes {
    display: flex;
    gap: 6px;
}

.sugestao-rede {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.15s;
}

.sugestao-rede:hover {
    background-color: rgba(255,255,255,0.18);
}

.sugestao-rede svg {
    display: block;
}

.post-card {
    cursor: pointer;
    transition: background-color 0.15s;
}

.post-card:hover {
    background-color: #2f2f2e;
}

.post-anexo img {
    cursor: zoom-in;
}

.post-tag.wip { background-color: #c79e3a; }
.post-tag.comissao { background-color: #5a3ac7; }
.post-tag.proprio { background-color: #3ac75a; }

.post-link-preview {
    display: block;
    background-color: rgba(255,255,255,0.04);
    border-left: 4px solid #5865f2;
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: background-color 0.15s;
}

.post-link-preview:hover {
    background-color: rgba(255,255,255,0.08);
}

.post-link-titulo {
    color: #5865f2;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    word-break: break-all;
}

.post-link-url {
    color: rgba(255,255,255,0.5);
    font-family: sans-serif;
    font-size: 11px;
    word-break: break-all;
}

.post-texto a {
    color: #5eb6ff;
    text-decoration: underline;
}

.post-tags-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
    flex: 1;
}

.post-tags-origem {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.modal-post {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.75);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
    animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalZoomIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-post-conteudo {
    background-color: #2a2a29;
    border-radius: 14px;
    max-width: 700px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    padding: 24px;
    position: relative;
    animation: modalZoomIn 0.25s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.modal-post-fechar {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.08);
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-post-fechar:hover {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
}

.modal-imagem {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: modalFadeIn 0.25s ease;
}

.modal-imagem img {
    max-width: 70%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    animation: modalZoomIn 0.25s ease;
}

.modal-imagem-fechar {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.toast-copiado {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2a2a29;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: sans-serif;
    font-size: 14px;
    z-index: 3000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    animation: toastSlide 0.3s ease;
}

@keyframes toastSlide {
    from { transform: translate(-50%, 20px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

body.sem-scroll {
    overflow: hidden !important;
}

html:has(body.sem-scroll) {
    overflow: hidden !important;
}

@keyframes glitchSkin {
    0%, 100% {
        filter: none;
        transform: translate(0, 0);
        opacity: 1;
    }
    10% {
        transform: translate(-4px, 2px);
        filter: drop-shadow(4px 0 0 #ff003c) drop-shadow(-4px 0 0 #00f0ff);
    }
    20% {
        transform: translate(3px, -1px);
        filter: drop-shadow(-3px 0 0 #ff003c) drop-shadow(3px 0 0 #00f0ff);
    }
    30% {
        transform: translate(-2px, 1px);
        filter: drop-shadow(5px 0 0 #ff003c) drop-shadow(-5px 0 0 #00f0ff) brightness(1.3);
        opacity: 0.85;
    }
    40% {
        transform: translate(5px, 0);
        filter: drop-shadow(8px 0 0 #ff003c) drop-shadow(-8px 0 0 #00f0ff);
        opacity: 0.7;
    }
    50% {
        transform: translate(-3px, 3px) scale(1.02);
        filter: drop-shadow(6px 0 0 #ff003c) drop-shadow(-6px 0 0 #00f0ff) brightness(1.2);
        opacity: 0.6;
    }
    60% {
        transform: translate(2px, -2px);
        filter: drop-shadow(-4px 0 0 #ff003c) drop-shadow(4px 0 0 #00f0ff);
        opacity: 0.8;
    }
    75% {
        transform: translate(-1px, 1px);
        filter: drop-shadow(2px 0 0 #ff003c) drop-shadow(-2px 0 0 #00f0ff);
    }
    90% {
        transform: translate(1px, 0);
        filter: drop-shadow(1px 0 0 #ff003c) drop-shadow(-1px 0 0 #00f0ff);
    }
}

#skinAtual.glitching {
    animation: glitchSkin 0.6s steps(1) forwards;
}