/* --- SECCIÓN PROYECTOS ENTREGADOS (HOME) --- */
.proyectos-entregados-section {
    padding: 60px 20px 80px 20px;
    background-color: #eef0f2; /* Fondo gris suave */
    width: 100%;
    box-sizing: border-box;
}

.proyectos-entregados-container {
    max-width: 1200px;
    margin: 0 auto;
}

.proyectos-entregados-title {
    text-align: center;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 34px;
    font-weight: 300;
    color: #444444;
    text-transform: uppercase;
    margin-bottom: 45px;
    letter-spacing: 1px;
}

.proyectos-entregados-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

/* TARJETA ESTÁTICA PROYECTO ENTREGADO */
.entregado-card {
    width: 280px;
    background: #ffffff;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.entregado-image-box {
    width: 100%;
    height: 185px;
    overflow: hidden;
}

.entregado-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.entregado-body-box {
    padding: 18px 15px 22px 15px;
    text-align: center;
    background: #ffffff;
}

.entregado-logo-box {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.entregado-logo-box img {
    max-height: 38px;
    max-width: 100%;
    object-fit: contain;
}

.entregado-divider {
    border: none;
    border-top: 1px solid #eeeeee;
    margin: 12px auto;
    width: 80%;
}

.entregado-district {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #555555;
    margin: 0 0 2px 0;
}

.entregado-year {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #888888;
    margin: 0;
}