/* Estilos de la Galería - Enfoque Mobile-First */
.gpp-public-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 10px;
    font-family: inherit;
    text-align: center;
    box-sizing: border-box;
}

.gpp-header-section {
    margin-bottom: 40px;
}

.gpp-main-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.gpp-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.gpp-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.gpp-filter-btn {
    padding: 8px 20px;
    border-radius: 25px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gpp-filter-btn.active {
    background: var(--gpp-primary-color, #007cba);
    color: #fff;
    border-color: var(--gpp-primary-color, #007cba);
}

.gpp-grid-public {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.gpp-project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4; 
    background: #eee;
    border: 4px solid transparent;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.gpp-project-card.is-active {
    border-color: var(--gpp-selection-color, #007cba);
}

.gpp-project-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.gpp-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease, transform 0.5s ease;
    filter: grayscale(0%);
}

.gpp-project-card:hover img,
.gpp-project-card.is-active img {
    filter: grayscale(100%) brightness(40%);
    transform: scale(1.05);
}

.gpp-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 25px;
    box-sizing: border-box;
}

.gpp-project-card:hover .gpp-project-overlay,
.gpp-project-card.is-active .gpp-project-overlay {
    opacity: 1;
}

.gpp-overlay-content {
    color: var(--gpp-text-footer-color, #ffffff);
    text-align: left;
}

.gpp-meta-service {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    color: inherit;
}

.gpp-meta-city {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    color: inherit;
}

@media (min-width: 768px) {
    .gpp-grid-public.gpp-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .gpp-grid-public.gpp-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .gpp-grid-public.gpp-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .gpp-public-wrap { padding: 40px 20px; }
}

@media (min-width: 1200px) {
    .gpp-public-wrap {
        padding: 40px 40px; /* Aumentado margen lateral en pantallas grandes */
        max-width: 100%;
    }
    .gpp-grid-public {
        padding: 0;
        gap: 20px; /* Aumentado espacio entre fotos para mejor estética */
    }
}
/* [CODE_COMPLETE] */