.container-proyectos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 5%;
    margin-top: 100px;
}

/* Tarjeta estilo horizontal */
.tarjeta-hub {
    max-width: 600px;
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 40px 20px;
    background: linear-gradient(rgba(198, 198, 198, 0.673), rgba(32, 32, 32, 0.763)),
                url('/Icon/logo_icon.png') calc(22% - 200px) top / 120px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.7);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

    text-align: center;
    color: #fff;

    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    transition: transform 0.3s ease;
}

.tarjeta-hub:hover {
    transform: translateY(-5px);
}

/* Títulos y descripciones */
.titulo-proyectos {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.descripcion-proyectos {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 600px;
    text-align: start;
}

/* Imagen */
.anuncio-proyectos {
    width: 75%;
    max-width: 500px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.anuncio-proyectos:hover {
    transform: scale(1.02);
}

/* Animación */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive: en móvil se apilan en vertical */
@media (max-width: 768px) {
    .container-proyectos {
        flex-direction: column;
        padding: 40px 20px;
    }

    .tarjeta-hub {
        max-width: 100%;
    }

    .titulo-proyectos {
        font-size: 26px;
    }

    .descripcion-proyectos {
        font-size: 15px;
    }
}
