/* Projeto Single Page Styles */

/* Info Row */
.projeto-info-row {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.projetoAno h2,
.projetoLocation h2,
.projetoType h2,
.projetoDescricao h2 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 8px;
}

.projetoAno,
.projetoLocation,
.projetoType {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Description Area */
.descricaoArea {
    position: relative;
}

.projetoDescricao {
    position: relative;
}

.areaTxtDesc {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.areaTxtDesc.expanded {
    max-height: none;
}

.areaTxtDesc p {
    margin-bottom: 12px;
}

.toggle-desc {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.toggle-desc:hover {
    background: #333;
    transform: scale(1.1);
}

/* Gallery Section */
.projeto-gallery-section {
    margin: 40px 0;
}

/* Label Content Accordion */
.label-content {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 15px 0;
    margin: 20px 0 0 0;
    border-top: 1px solid #e0e0e0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    user-select: none;
}

.label-content::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.label-content.active::after {
    content: '−';
}

.label-content:hover {
    color: #666;
}

.label-content-wrapper {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.label-content-wrapper.active {
    max-height: 5000px;
}

/* Responsive */
@media (max-width: 991px) {
    .projeto-info-row > div {
        margin-bottom: 25px;
    }
    
    .areaTxtDesc {
        max-height: 150px;
    }
}

@media (max-width: 767px) {
    .projeto-info-row {
        margin: 20px 0;
        padding: 15px 0;
    }
    
    .toggle-desc {
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
    
    .label-content {
        font-size: 12px;
        padding: 12px 0;
    }
}
