/* =========================================
           ESTILOS ESPECÍFICOS TALLERES
           ========================================= */
.workshops-page-section {
    padding: 60px 0;
    background-color: #f4f6f9;
}



.news-headline {
    color: var(--u-verde-profundo);
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 5px;
}

/* Filtros y Buscador */
.filter-container {
    margin-bottom: 40px;
    text-align: center;
}

.btn-filter {
    border: 2px solid var(--u-verde-profundo);
    color: var(--u-verde-profundo);
    background: transparent;
    padding: 8px 20px;
    margin: 5px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.btn-filter:hover,
.btn-filter.active {
    background-color: var(--u-verde-profundo);
    color: white;
    box-shadow: 0 5px 15px rgba(27, 77, 62, 0.3);
}

/* Tarjetas de Taller */
.workshop-card-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    height: 100%;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.workshop-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--u-dorado);
}

.ws-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.ws-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.workshop-card-item:hover .ws-img-box img {
    transform: scale(1.1);
}

.ws-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Colores por Categoría */
.bg-deporte {
    background-color: #198754;
}

.bg-cultura {
    background-color: #6f42c1;
}

.bg-tecnologia {
    background-color: #0dcaf0;
    color: #000 !important;
}

.bg-industrial {
    background-color: #fd7e14;
}

.bg-gastro {
    background-color: #d63384;
}

.ws-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.ws-title {
    font-family: 'Merriweather', serif;
    font-weight: 800;
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.ws-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-access {
    background-color: var(--u-verde-profundo);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s;
}

.btn-access:hover {
    background-color: var(--u-dorado);
    color: black;
}

@media (max-width: 991px) {
    .hero-slide {
        height: 300px;
    }

    .hero-news-card {
        width: 90%;
        bottom: 20px;
        padding: 20px;
    }
}







/* =========================================
           ESTILOS GENERALES Y ESPECÍFICOS
           ========================================= */
:root {
    --u-verde-profundo: #1b4d3e;
    --u-verde-medio: #2c6e49;
    --u-dorado: #d4af37;
    --u-gris-claro: #f4f6f9;
    --u-texto: #333333;
    --u-blanco: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--u-texto);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.formal-title {
    font-family: 'Merriweather', serif;
}



.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}



.news-headline {
    color: var(--u-verde-profundo);
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 5px;
}

/* Contenido Principal */
.workshop-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.divider-left {
    height: 4px;
    width: 50px;
    background-color: var(--u-dorado);
    border-radius: 2px;
    margin-top: 10px;
    margin-bottom: 25px;
}

/* Sidebar con Datos del Taller (LO QUE PEDISTE) */
.workshop-sidebar {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    border-left: 5px solid var(--u-verde-profundo);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.data-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.data-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.data-icon {
    width: 50px;
    height: 50px;
    background-color: var(--u-verde-profundo);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.data-content h6 {
    margin: 0;
    font-weight: 700;
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.data-content p {
    margin: 0;
    font-weight: 900;
    color: #222;
    font-size: 1rem;
    font-family: 'Merriweather', serif;
}

/* Lista de Objetivos */
.check-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--u-verde-medio);
}

/* Header y Footer Styles (Repetidos para asegurar visualización) */
.top-bar {
    background-color: #0d2b21;
    color: #ccc;
    font-size: 0.8rem;
    padding: 6px 0;
}

.main-header {
    padding: 20px 0;
    border-bottom: 3px solid var(--u-dorado);
}

.academic-nav {
    background-color: var(--u-verde-profundo);
}

.academic-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 20px;
}

footer {
    background-color: #0d2b21;
    color: white;
    padding: 70px 0 30px 0;
    border-top: 5px solid var(--u-dorado);
}

.footer-logo-text {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

/* Ajustes Móvil */
@media (max-width: 991px) {
    .hero-slide {
        height: 300px;
    }

    .hero-news-card {
        width: 90%;
        bottom: 20px;
        padding: 20px;
    }

    .workshop-sidebar {
        margin-top: 40px;
    }

    /* Estilos Menú Móvil */
    .navbar-toggler {
        border: none;
        padding: 5px;
        margin-left: auto;
    }

    .mobile-sidebar {
        background-color: #0f8b65;
        border-left: 4px solid var(--u-dorado);
        width: 85%;
        max-width: 350px;
    }

    .mobile-cat-title {
        color: white;
        font-weight: 900;
        margin: 20px 0 5px 5px;
    }

    .mobile-links-box {
        background-color: #0b6e4f;
        border-radius: 4px;
        overflow: hidden;
    }

    .mobile-link {
        display: block;
        padding: 12px 15px;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 700;
        font-size: 0.8rem;
        text-decoration: none;
    }
}