/* --- PORTFOLIO DETAIL PAGES (audiovisual, design, identidade-visual, social-media, sobre-ia) --- */

/* Capa inicial */
.detail-cover {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-color: #0d0d0d;
}

.detail-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.45) 0%, rgba(5, 5, 5, 0.9) 100%);
}

.detail-title {
    position: relative;
    z-index: 1;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #c59d5f 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Descrição do serviço */
.detail-description {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.detail-desc {
    color: #e6e0d4;
    font-size: 1.1rem;
    line-height: 1.8;
}

.detail-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 120px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Espaço reservado para você inserir as imagens do portfólio manualmente */
.gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(197, 157, 95, 0.35);
    background-size: cover;
    background-position: center;
}

@media (max-width: 800px) {
    .detail-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .detail-gallery { grid-template-columns: 1fr; }
}
