.seccion-talleres {
    width: 100%;
    padding: 20px 20px;
    background: #fdf7f0;
}

/* CONTROL TOTAL DEL ANCHO */
.contenedor-talleres {
    display: flex;
    gap: 30px; /* Espacio entre cards */
    flex-wrap: wrap;
    max-width: 1200px; /* Controlas aquí el ancho */
    margin: 0 auto; /* Centrado */
}

/* TITULO */
.titulo-seccion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.titulo-seccion h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.titulo-seccion p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* CARDS MÁS GRANDES */
.taller-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 420px; /* Más altura */
    display: flex;
    flex-direction: column;
}

.taller-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

/* IMAGEN MÁS GRANDE */
.taller-card img {
    width: 100%;
    height: 300px; /* Más alto */
    object-fit: cover;
}

/* CONTENIDO */
.taller-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #1e3a8a;
    margin: 20px 15px 10px;
}

.taller-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
    margin: 0 20px 25px;
    line-height: 1.6;
    flex-grow: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .taller-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .taller-card {
        flex: 1 1 100%;
    }
}