
/* =========================
   RESET BÁSICO
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0f0f0f;
    color: #fff;
}

.logo-site{

    color:#ff0055;
    font-size:24px;
    font-weight:bold;
    letter-spacing:-1px;

}

/* =========================
   HERO / BANNER
========================= */
.post-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px;
    background-size: cover;
    background-position: center;
}

/* Degradê escuro por cima da imagem */
.post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.95) 0%,
        rgba(0,0,0,0.7) 40%,
        rgba(0,0,0,0.2) 100%
    );
}

/* Container principal */
.post-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

/* =========================
   LADO ESQUERDO
========================= */
.post-left {
    max-width: 600px;
}

.post-logo {
    width: 350px;
    margin-bottom: 20px;
}

.post-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: lighter;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.post-description {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* =========================
   BOTÕES
========================= */
.post-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
    display: inline-block;
}

/* botão principal */
.btn.primary {
    background: #fff;
    color: #000;
}

/* botão secundário */
.btn.secondary {
    background: #2a2a2a;
    color: #fff;
}

.btn:hover {
    transform: scale(1.05);
}

/* =========================
   LADO DIREITO (CAPA)
========================= */
.post-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.post-cover {
    width: 280px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    transition: 0.3s;
}

/* efeito hover na capa */
.post-cover:hover {
    transform: scale(1.05);
}

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

    .post-hero {
        padding: 30px;
    }

    .post-content {
        flex-direction: column;
        text-align: center;
    }

    .post-left {
        max-width: 100%;
    }

    .post-meta {
        justify-content: center;
    }

    .post-buttons {
        justify-content: center;
    }

    .post-cover {
        width: 220px;
        margin-top: 30px;
    }
}

/* POST INFORMAÇÕES */


.post-info-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* Alinha os itens verticalmente dentro de cada linha */
    justify-content: center; /* Centraliza os itens horizontalmente */

    gap: 8px;  /* Adiciona um espaçamento entre os itens */
    padding: 12px 16px;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 1px;

    color: #ccc;
    font-size: 0.85rem;

    margin-bottom: 25px;
}

/* separador */
.post-info-bar .sep {
    color: rgba(255,255,255,0.25);
}

/* hover leve em cada item */
.post-info-bar span {
    transition: 0.2s;
}

.post-info-bar span:hover {
    color: #fff;
    transform: scale(1.05);
}

/* destaque para hosts */
.post-info-bar .host {
    padding: 3px 8px;
    border-radius: 6px;

    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);

    color: #fff;
    font-weight: 600;
}

/* BOTÃO NOVO DE DOWNLOAD*/

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 16px 22px;
    border-radius: 14px;

    background: linear-gradient(135deg, #ffffff, #d9d9d9);
    color: #000;
    text-decoration: none;

    width: fit-content;

    box-shadow: 0 15px 35px rgba(0,0,0,0.5);

    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* brilho animado */
.download-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    transition: 0.5s;
}

/* hover cinematográfico */
.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0,0,0,0.7);
}

/* ícone */
.download-btn .icon {
    font-size: 1.6rem;
}

/* texto */
.download-btn .text {
    display: flex;
    flex-direction: column;
}

.download-btn .title {
    font-weight: bold;
    font-size: 1rem;
}

.download-btn .subtitle {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* CONTEÚDO EXTRA INÍCIO */

.related-section {
    margin-top: 60px;
    padding: 0 60px;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.related-header h2 {
    color: #fff;
    font-size: 1.3rem;
}

.related-header a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
}

.related-header a:hover {
    color: #fff;
}

/* WRAPPER */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* CARROSSEL */
.carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;

    scrollbar-width: none; /* Firefox */
}

.carousel::-webkit-scrollbar {
    display: none; /* Chrome */
}

/* CARD */
.carousel-card {
    min-width: 160px;
    flex: 0 0 auto;
    transition: 0.3s;
}

.carousel-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.carousel-card h4 {
    color: #ddd;
    font-size: 0.9rem;
    margin-top: 8px;
    text-align: center;
}

.carousel-card:hover {
    transform: scale(1.05);
}

/* BOTÕES */
.carousel-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 2rem;
    width: 40px;
    height: 60px;
    cursor: pointer;
    z-index: 2;
    transition: 0.2s;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.2);
}

.carousel-btn.left {
    left: -20px;
}

.carousel-btn.right {
    right: -20px;
}

/* CONTEÚDO EXTRA FIM */