/* ===================== TALLERES ===================== */

.talleres-hero {
    background-image: linear-gradient(rgba(33, 1, 0, 0.4), rgba(33, 1, 0, 0.4)), url("../imagenes/talleres-hero.jpg");
    background-size: cover;
    background-position: center 60%;
    background-attachment: fixed;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FDF6E3;
}

.talleres-hero h1 {
    color: #FDF6E3;
    text-shadow: 0 3px 16px rgba(33, 1, 0, 0.9);
}

.talleres-hero-texto {
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 1.5rem;
    text-shadow: 0 3px 14px rgba(33, 1, 0, 0.9);
}

.talleres-lista {
    padding-top: 6rem;
    margin-bottom: 5rem;
}

.taller-item {
    margin-bottom: 5rem;
}

.taller-item:last-child {
    margin-bottom: 0;
}

.taller-item h2 {
    text-align: center;
    color: #210100; /* primario */
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.taller-item h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #E6A341; /* secundario */
}

.taller-item .btn.button,
.taller-item .btn.button-light {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #E6A341; /* secundario */
    color: #210100;
    border: none;
}

.taller-item .btn.button:hover,
.taller-item .btn.button-light:hover {
    background-color: #8C0902; /* terciario */
    color: #FDF6E3;
}

.taller-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
}

/* ==========================
   TABLETS (<=992px)
========================== */
@media (max-width: 992px) {
    .talleres-hero {
        background-image: none;
        background-color: #FDF6E3;
        background-attachment: scroll;
        height: auto;
        padding: 4rem 2rem;
        color: #210100;
    }

    .talleres-hero h1 {
        color: #210100;
        text-shadow: none;
    }

    .talleres-hero-texto {
        color: #210100;
        text-shadow: none;
    }

    .taller-img {
        height: 300px;
    }
}

/* ==========================
   CELULARES (<=768px)
========================== */
@media (max-width: 768px) {
    .talleres-hero {
        text-align: center;
        padding: 2.5rem 1rem 4rem;
    }

    .talleres-hero-texto {
        font-size: 1rem;
    }

    .taller-item {
        text-align: center;
        margin-bottom: 3rem;
    }

    .taller-img {
        height: 240px;
        margin-bottom: 1rem;
    }
}