.bg-proyectos {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 18, 72, 0.393)), url(../img/banner_proy.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
}

.bg-proyectos .proyectos {
    position: relative;
}

.bg-proyectos .breadcrumb-item a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.bg-proyectos .breadcrumb-item a:hover {
    color: #cccccc !important;
}


.project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.project-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.project-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-client {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.project-client i {
    color: #0d6efd;
    margin-right: 6px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
}

.project-meta i {
    color: #198754;
    margin-right: 5px;
}

.project-info {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
}

.project-info li {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.project-info i {
    color: #fd7e14;
    margin-right: 6px;
}

.project-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: auto;
}

.project-logo {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.project-logo img {
    max-height: 50px;
    max-width: 170px;
    object-fit: contain;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.3;
}

.project-title i {
    color: #0d6efd;
    margin-right: 6px;
}