/* Contenedor principal */
.images {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Cada imagen */
.image {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

/* Imagen activa (expandida) */
.image.active {
    flex: 5;
}

/* Etiqueta inferior */
.label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Mostrar label solo en activa */
.image.active .label {
    opacity: 1;
}

/* Icono */
.icon {
    background: rgba(0,0,0,0.6);
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Texto */
.info .main {
    font-weight: bold;
}

.info .sub {
    font-size: 12px;
    opacity: 0.8;
}