﻿/* Estilos para o portfólio dinâmico - SEM ANIMAÇÕES */

/* Meta informações dos projetos */
.projeto-meta {
    margin-top: 10px;
    font-size: 0.85em;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .projeto-meta span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 2px 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
        backdrop-filter: blur(5px);
    }

.projeto-categoria {
    font-weight: 600;
}

.projeto-area,
.projeto-data {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8em;
}

/* Botões de filtro - sem transições */
.eael-cf-btn {
    border: 2px solid transparent;
}

    .eael-cf-btn.active {
        border-color: currentColor;
    }

    .eael-cf-btn i {
        margin-right: 6px;
        font-size: 1.1em;
    }

/* Overlay melhorado - sem transições */
.gallery-item-hoverer-bg {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(2px);
}

/* Títulos dos projetos */
.fg-item-title {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Descrições dos projetos */
.fg-item-content p {
    font-size: 0.9em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .projeto-meta {
        font-size: 0.8em;
        gap: 4px;
    }

        .projeto-meta span {
            padding: 1px 4px;
        }

    .fg-item-title {
        font-size: 1em;
    }

    .fg-item-content p {
        font-size: 0.85em;
    }
}

/* Responsividade para móveis */
@media (max-width: 480px) {
    .eael-cf-btn {
        padding: 8px 12px;
        font-size: 0.9em;
    }

        .eael-cf-btn i {
            margin-right: 4px;
            font-size: 1em;
        }

    .projeto-meta {
        flex-direction: column;
        gap: 2px;
    }

    .fg-item-title {
        font-size: 0.95em;
        margin-bottom: 6px;
    }

    .fg-item-content p {
        font-size: 0.8em;
        line-height: 1.3;
    }
}

/* Estados de carregamento */
.portfolio-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

    .portfolio-loading i {
        font-size: 2em;
    }

/* Estados vazios */
.portfolio-empty {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

    .portfolio-empty i {
        font-size: 3em;
        margin-bottom: 16px;
        color: #ccc;
    }

/* Indicadores de projeto em destaque */
.eael-filterable-gallery-item-wrap.destacado {
    position: relative;
}

    .eael-filterable-gallery-item-wrap.destacado::before {
        content: "★";
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 10;
        background: #FFD700;
        color: #000;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
