/* Vitrine de capítulos e módulos */
.vitrine-container-novo {
    margin: 40px 20px;
}

.vitrine-capitulo-secao {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
    padding-bottom: 20px;
}

.vitrine-capitulo-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: rgba(0, 255, 204, 0.05);
    border-left: 4px solid #00ffcc;
}

.vitrine-capitulo-header h3 {
    color: #00ffcc;
    font-size: 1.2rem;
    margin: 0;
}

.vitrine-capitulo-header span {
    font-size: 0.7rem;
    color: #888;
}

/* Grid com 4 cards por linha */
.vitrine-capitulo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .vitrine-capitulo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .vitrine-capitulo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vitrine-capitulo-grid {
        grid-template-columns: 1fr;
    }
}

/* Card da vitrine */
.card-vitrine {
    background: linear-gradient(135deg, #0f0f0f, #080808);
    border: 1px solid #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-vitrine:hover {
    border-color: #00ffcc;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 204, 0.2);
}

/* Capa quadrada */
.vitrine-capa {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #111, #0a0a0a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-bottom: 1px solid #1a1a1a;
}

/* Informações do módulo */
.vitrine-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vitrine-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    min-height: 2.6rem;
}

/* Preços */
.vitrine-precos {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 5px;
}

.preco-vitalicio {
    background: rgba(0, 255, 204, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    color: #00ffcc;
    text-align: center;
    flex: 1;
}

.preco-aluguel {
    background: rgba(255, 170, 0, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    color: #ffaa00;
    text-align: center;
    flex: 1;
}

.preco-valor {
    font-weight: bold;
    font-size: 0.8rem;
}

/* Botão */
.vitrine-btn {
    width: 100%;
    background: transparent;
    border: 1px solid #00ffcc;
    color: #00ffcc;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: 5px;
}

.vitrine-btn:hover {
    background: #00ffcc;
    color: #000;
    box-shadow: 0 0 10px #00ffcc;
}