.dega-proyectos-section {
    width: 100%;
    padding: 20px 0 50px;
}

.dega-proyectos-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.dega-proyecto-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dega-proyecto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.13);
}

.dega-proyecto-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #e5e7eb;
    overflow: hidden;
}

.dega-proyecto-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dega-proyecto-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d1d5db, #f3f4f6);
}

.dega-proyecto-info {
    padding: 22px 24px 26px;
}

.dega-proyecto-info h3 {
    margin: 0 0 6px;
    color: #1f2937;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.dega-proyecto-subtitle {
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 600;
}

.dega-proyecto-desc {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.55;
}

.dega-proyecto-desc p {
    margin: 0 0 10px;
}

.dega-proyecto-desc p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .dega-proyectos-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .dega-proyectos-section {
        padding: 10px 0 35px;
    }

    .dega-proyectos-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .dega-proyecto-info {
        padding: 18px 20px 22px;
    }

    .dega-proyecto-info h3 {
        font-size: 20px;
    }
}
