/* ========================================================
   ESTILOS EXCLUSIVOS DA ÁREA DE SUPORTE (BLOG / MEMBROS)
======================================================== */

.suporte-container {
    padding-top: 140px; /* Espaçamento abaixo do nav fixo */
    padding-bottom: 80px;
    min-height: 80vh;
}

.suporte-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-topo {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-topo h2 {
    font-size: 1.6rem;
    color: var(--text-white);
    font-weight: 700;
}

/* Sistema de Grid (Cards) */
.suporte-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Card de Conteúdo */
.content-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 132, 255, 0.15);
    border-color: rgba(10, 132, 255, 0.4);
}

.card-thumb {
    position: relative;
    height: 180px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

/* Estilo para thumbs que tem imagem de fundo */
.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.content-card:hover .card-thumb img {
    opacity: 0.9;
}

/* Estilo Play de Vídeo */
.video-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(10, 132, 255, 0.5);
    z-index: 2;
    transition: transform 0.3s ease;
}

.content-card:hover .play-btn {
    transform: scale(1.1);
}

/* Badges (Categorias) */
.badge-tipo {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.badge-video {
    background: #ff4757;
    color: white;
}

.badge-artigo {
    background: rgba(10, 132, 255, 0.2);
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}

.badge-tutorial {
    background: rgba(0, 210, 106, 0.2);
    border: 1px solid var(--success-green);
    color: var(--success-green);
}

/* Corpo do Card */
.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.data-post {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
}

.card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-white);
}

.card-body p {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Link de Leitura */
.btn-read {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    align-self: flex-start;
}

.btn-read:hover {
    color: var(--primary-hover);
    letter-spacing: 1px;
}