@import url('reset.css');
@import url('classes.css');
@import url('discord.css');
@import url('cupom.css');
@import url('lang.css');
@import url('menu.css');
@import url('creator.css');
@import url('footer.css');
@import url('videos.css');
@import url('countdown.css');
@import url('info.css');
@import url('loader.css');
@import url('cards.css');
@import url('sections.css');
@import url('hero.css');
@import url('particles.css');
@import url('reset.css');
@import url('main.css');
@import url('download.css');

/* camada de transição */
.page-transition {
    background: radial-gradient(circle at center, #000 40%, #000 100%);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* quando ativa */
.page-transition.active {
    opacity: 1;
}

.page-transition::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,215,0,0.2), transparent);
    animation: shine 1s infinite;
}

@keyframes shine {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

/* ===== BASE ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== VARIAÇÕES ===== */

/* esquerda */
.reveal-left {
    transform: translateX(-80px);
}
.reveal-left.active {
    transform: translateX(0);
}

/* direita */
.reveal-right {
    transform: translateX(80px);
}
.reveal-right.active {
    transform: translateX(0);
}

/* zoom */
.reveal-zoom {
    transform: scale(0.85);
}
.reveal-zoom.active {
    transform: scale(1);
}

/* blur cinematic */
.reveal-blur {
    filter: blur(10px);
}
.reveal-blur.active {
    filter: blur(0);
}

.section-title {
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* POSTAGEM TESTE */

/* ===== POST PAGE ===== */

.post-section {
    padding: 140px 20px 80px;
    position: relative;

    background-image: url('../img/background-4-bk.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* CONTAINER */
.post-container {
    max-width: 900px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);

    border-radius: 15px;
    overflow: hidden;

    border: 1px solid rgba(255,180,0,0.2);
    box-shadow: 0 0 40px rgba(0,0,0,0.8);
}

/* BOTÃO VOLTAR */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin: 20px;
    padding: 10px 16px;

    border: 1px solid gold;
    border-radius: 8px;

    color: gold;
    text-decoration: none;
    font-size: 13px;

    transition: .3s;
}

.btn-back:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 15px gold;
}

/* IMAGEM */
.post-image img {
    width: 100%;
    height: auto;
    display: block;

    border-bottom: 1px solid rgba(255,180,0,0.2);
}

/* CONTEÚDO */
.post-content {
    padding: 30px;
}

/* TÍTULO */
.post-content h1 {
    font-size: 28px;
    color: gold;
    margin-bottom: 10px;

    text-shadow: 0 0 10px rgba(255,215,0,0.4);
}

/* META */
.post-meta {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 20px;
}

/* TEXTO */
.post-text {
    color: #ddd;
    font-size: 15px;
    line-height: 1.7;
}

/* RESPONSIVO */
@media(max-width: 768px){

    .post-content {
        padding: 20px;
    }

    .post-content h1 {
        font-size: 22px;
    }

    .post-text {
        font-size: 14px;
    }

}