/* Estilos para la plantilla de Talleres - Casa de la Cultura de Tungurahua */

/* Contenedor principal */
.taller-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333333;
}

.taller-header h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

/* Layout del contenido */
.taller-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.taller-main {
    flex: 1 1 60%;
    min-width: 300px;
}

.taller-sidebar {
    flex: 1 1 30%;
    min-width: 300px;
}

/* Slider de imágenes */
.taller-slider {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f1f1f1;
    height: 400px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}

.slider-nav i {
    line-height: 1;
}

.slider-nav.prev {
    left: 10px;
}

.slider-nav.next {
    right: 10px;
}

/* Estilos para la descripción */
.taller-descripcion {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: justify;
}

/* Botón de detalles */
.detalles-boton {
    margin-bottom: 30px;
}

.btn-detalles {
    width: 100%;
    padding: 15px;
    border-radius: 25px;
    border: 2px solid #333333;
    background-color: white;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-detalles:hover {
    background-color: #f1f1f1;
}

.btn-detalles i {
    font-size: 22px;
    line-height: 1;
    color: #333333;
}

/* Estilos para la información del taller */
.taller-info, .horario-seccion {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Iconos sin círculos */
.icon-wrapper {
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon {
    color: #333333;
    font-size: 28px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon i {
    line-height: 1;
}

.info-content {
    flex: 1;
    min-width: 0;
}

.label {
    display: inline-block;
    font-weight: bold;
    margin-right: 8px;
}

.value {
    font-weight: normal;
}

/* Sección de horarios */
.horario-header {
    background-color: #4a4a4a;
    color: white;
    padding: 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: bold;
}

.horario-header i {
    font-size: 22px;
    line-height: 1;
}

/* Estilos para el botón de WhatsApp */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    padding: 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 30px;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 24px;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .taller-content {
        flex-direction: column;
    }
    
    .taller-slider {
        height: 250px;
    }
    
    .taller-header h1 {
        font-size: 2rem;
    }
    
    .icon-wrapper {
        flex: 0 0 30px;
        width: 30px;
        height: 30px;
    }
    
    .icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .icon-wrapper {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
    }
    
    .icon {
        font-size: 22px;
    }
}

/* Estilos específicos para seguir el diseño de la Casa de la Cultura */
.btn-detalles, .horario-header {
    text-transform: uppercase;
    letter-spacing: 1px;
}